{"id":20972482,"url":"https://github.com/dantecatalfamo/sillylisp","last_synced_at":"2025-09-11T02:42:20.437Z","repository":{"id":196383393,"uuid":"695992250","full_name":"dantecatalfamo/sillylisp","owner":"dantecatalfamo","description":"A sort-of-a-lisp extracted from a previous project.","archived":false,"fork":false,"pushed_at":"2023-09-24T20:42:44.000Z","size":15,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-11T01:36:55.588Z","etag":null,"topics":["config","configuration-language","lisp","zig"],"latest_commit_sha":null,"homepage":"","language":"Zig","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/dantecatalfamo.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}},"created_at":"2023-09-24T20:25:23.000Z","updated_at":"2024-10-06T17:26:05.000Z","dependencies_parsed_at":"2023-09-25T00:44:55.192Z","dependency_job_id":null,"html_url":"https://github.com/dantecatalfamo/sillylisp","commit_stats":null,"previous_names":["dantecatalfamo/sillylisp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dantecatalfamo/sillylisp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantecatalfamo%2Fsillylisp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantecatalfamo%2Fsillylisp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantecatalfamo%2Fsillylisp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantecatalfamo%2Fsillylisp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dantecatalfamo","download_url":"https://codeload.github.com/dantecatalfamo/sillylisp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantecatalfamo%2Fsillylisp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274568789,"owners_count":25309283,"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","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["config","configuration-language","lisp","zig"],"created_at":"2024-11-19T04:08:30.651Z","updated_at":"2025-09-11T02:42:20.418Z","avatar_url":"https://github.com/dantecatalfamo.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sillylisp\n\nA sort-of-a-lisp extracted from a previous project.\n\nOriginally intended to be used as a configuration language.\nDesigned to be easy to grok and fast.\nIt doesn't have a garbage collector but instead frees everything when the environment is destroyed.\nUses lists instead of cons cells internally.\n\nSupports lambdas, special forms, recursion, debugging, tracing, defining functions and variables, etc.\n\n## Building\n```zig\nzig build\n```\n\n## Running\n```zig\nzig build run\n```\n\nThis will open an interactive REPL.\n\n## Usage\n\n```zig\nconst std = @import(\"std\");\nconst environment = @import(\"environment.zig\");\n\npub fn main() !void {\n    var gpa = std.heap.GeneralPurposeAllocator(.{ .enable_memory_limit = true }){};\n    var allocator = gpa.allocator();\n    const stdin = std.io.getStdIn().reader();\n    const stdout = std.io.getStdOut().writer();\n    var env = try environment.Environment.init(allocator);\n    defer env.deinit();\n\n    var expression = \"(+ 1 2 3)\"\n    const result = try env.load(expression);\n    try result.toString(stdout);\n    try stdout.print(\"\\n\", .{});\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdantecatalfamo%2Fsillylisp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdantecatalfamo%2Fsillylisp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdantecatalfamo%2Fsillylisp/lists"}