{"id":21573665,"url":"https://github.com/droptheplot/yal","last_synced_at":"2025-07-06T13:07:18.177Z","repository":{"id":89238018,"uuid":"103032099","full_name":"droptheplot/yal","owner":"droptheplot","description":"Yet another Lisp transpiler to Go source code","archived":false,"fork":false,"pushed_at":"2018-11-15T23:49:08.000Z","size":40,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-02-27T15:38:04.758Z","etag":null,"topics":["go","golang","lisp","lisp-compiler","lisp-variant"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/droptheplot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-10T13:38:24.000Z","updated_at":"2024-06-19T07:57:08.647Z","dependencies_parsed_at":"2023-06-14T13:30:28.667Z","dependency_job_id":null,"html_url":"https://github.com/droptheplot/yal","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/droptheplot/yal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droptheplot%2Fyal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droptheplot%2Fyal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droptheplot%2Fyal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droptheplot%2Fyal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/droptheplot","download_url":"https://codeload.github.com/droptheplot/yal/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droptheplot%2Fyal/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263905742,"owners_count":23527972,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","lisp","lisp-compiler","lisp-variant"],"created_at":"2024-11-24T12:07:40.228Z","updated_at":"2025-07-06T13:07:18.155Z","avatar_url":"https://github.com/droptheplot.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Yal\n\nYet another Lisp [transpiler](https://en.wikipedia.org/wiki/Source-to-source_compiler) to Go source code.\n\n[![GoDoc](https://godoc.org/github.com/droptheplot/yal?status.svg)](https://godoc.org/github.com/droptheplot/yal)\n[![Go Report Card](https://goreportcard.com/badge/github.com/droptheplot/yal)](https://goreportcard.com/report/github.com/droptheplot/yal)\n\n## Usage\n\n```shell\ngit clone https://github.com/droptheplot/yal\ncd yal\ngo build\n./yal -path hello.yal\n```\n\n## Example\n\n**input.yal**\n\n```go\n(package \"main\")\n\n(import \"fmt\")\n\n(func main () ()\n  (fmt.Println (mul 2 3)))\n\n(func mul ((a int) (b int)) (int)\n  (* a b))\n```\n\n**output.go**\n\n```go\npackage main\n\nimport \"fmt\"\n\nfunc main() {\n  fmt.Println(mul(2, 3))\n}\n\nfunc mul(a int, b int) int {\n  return a * b\n}\n```\n\n## Disclaimer\n\nThis is a fun project and is not meant to be used anywhere.\n\n## Features\n\n- Declarations (`func`, `var`, `package`, `import`)\n- Arithmetics (`+`, `-`, `*`, `/`, `%`)\n- Comparisons (`\u003c`, `\u003e`, `\u003c=`, `\u003e=`, `==`, `!=`)\n- Boolean operators (`\u0026\u0026`, `||`)\n- Slice operations (`map`)\n- Control flow statements (`if`, `switch`, `return`)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdroptheplot%2Fyal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdroptheplot%2Fyal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdroptheplot%2Fyal/lists"}