{"id":15099817,"url":"https://github.com/elton2048/glizp","last_synced_at":"2026-01-07T06:10:44.414Z","repository":{"id":252103229,"uuid":"839211157","full_name":"elton2048/glizp","owner":"elton2048","description":"Lisp interpreter in zig; Learning purpose mainly","archived":false,"fork":false,"pushed_at":"2024-10-18T07:17:28.000Z","size":49,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-19T14:29:26.180Z","etag":null,"topics":["learning","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elton2048.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-08-07T07:00:38.000Z","updated_at":"2024-10-17T15:01:50.000Z","dependencies_parsed_at":"2024-10-21T06:58:29.216Z","dependency_job_id":"d55df2f0-d298-47b6-9841-db444ba4e1da","html_url":"https://github.com/elton2048/glizp","commit_stats":{"total_commits":13,"total_committers":1,"mean_commits":13.0,"dds":0.0,"last_synced_commit":"0c81e0c1ca4df68510d6c7de0b0d15752c23f6b2"},"previous_names":["elton2048/glizp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elton2048%2Fglizp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elton2048%2Fglizp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elton2048%2Fglizp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elton2048%2Fglizp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elton2048","download_url":"https://codeload.github.com/elton2048/glizp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245892043,"owners_count":20689436,"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":["learning","lisp","zig"],"created_at":"2024-09-25T17:27:51.788Z","updated_at":"2026-01-07T06:10:39.384Z","avatar_url":"https://github.com/elton2048.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lisp Interpreter in zig\n\nBuild script\n```sh\nzig build\n```\n\n# Note\n\nZig requires manual memory management, some memory are required to be freed for better main program and test cases, noticeably the following items\n- ArrayList (by `arrayList.deinit()`)\n- Slice from ArrayList (Could be `allocator.free(SLICE)`, by then the array list is not required to be freed. If it is not wrapped in allocator some manual way shall be used.)\n\n# Patch note\n\nThe [regex library](https://github.com/tiehuis/zig-regex) used requires patch in order to support non-capturing group for tokenization process. Please refer to https://github.com/elton2048/zig-regex/tree/feat-complex-group-support\n\nAnother fix for allowing repeat tokens shows as follow:\n\nIn `src/regex.zig`\n```\n    pub fn isByteClass(re: *const Expr) bool {\n        switch (re.*) {\n            .Literal,\n            .ByteClass,\n            .AnyCharNotNL,\n            // TODO: Don't keep capture here, but allow on repeat operators.\n            .Capture,\n+           .Repeat,\n            =\u003e return true,\n            else =\u003e return false,\n        }\n    }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felton2048%2Fglizp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felton2048%2Fglizp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felton2048%2Fglizp/lists"}