{"id":28243620,"url":"https://github.com/kashicode/simplescript","last_synced_at":"2025-06-10T15:30:30.898Z","repository":{"id":292518960,"uuid":"727411590","full_name":"KashiCode/SimpleScript","owner":"KashiCode","description":" Interpreter built in C ","archived":false,"fork":false,"pushed_at":"2025-05-24T15:25:45.000Z","size":27,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-30T02:04:32.352Z","etag":null,"topics":["c","education"],"latest_commit_sha":null,"homepage":"","language":"C","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/KashiCode.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,"zenodo":null}},"created_at":"2023-12-04T20:07:54.000Z","updated_at":"2025-05-24T15:25:48.000Z","dependencies_parsed_at":"2025-05-10T14:22:21.275Z","dependency_job_id":"1c5b0301-172d-4ecb-a9b7-9c8351da7b8e","html_url":"https://github.com/KashiCode/SimpleScript","commit_stats":null,"previous_names":["kashicode/simplescript"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KashiCode%2FSimpleScript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KashiCode%2FSimpleScript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KashiCode%2FSimpleScript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KashiCode%2FSimpleScript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KashiCode","download_url":"https://codeload.github.com/KashiCode/SimpleScript/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KashiCode%2FSimpleScript/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259100998,"owners_count":22805185,"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":["c","education"],"created_at":"2025-05-19T07:07:44.823Z","updated_at":"2025-06-10T15:30:30.891Z","avatar_url":"https://github.com/KashiCode.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n- Lexical analysis 🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦 100%\n- Syntax analysis  🟦🟦🟦🟦🟦🟦🟦🟦⬜️⬜️ 80%\n- Semantic analysis ⬜️⬜️⬜️⬜️⬜️⬜️⬜️⬜️⬜️⬜️ 0%\n\n\n## 📌 Language Example:\n\n```\nValue1(Int): 100\nValue2(String): 'Hello'\nOutput{Value1}\nOutput{Value1,Value2}\nOutput{'this is a test'}\n@ comment\nOutput{'enter your age'}\n\n```\n\n## 📌 Grammar rules\n\n```\nassignment: \u003cvariable\u003e \u003ctype\u003e ':' \u003cvalue\u003e\noutput: \"Output\" '{' (\u003cvalue\u003e (',' \u003cvalue\u003e)*)? '}'\ncomment: '@' \u003ctext\u003e\nvariable: \u003cidentifier\u003e\ntype: \"Int\" | \"String\"\nvalue: \u003cnumber\u003e | \u003cstring_literal\u003e\nidentifier: \u003cletter\u003e (\u003cletter\u003e | \u003cdigit\u003e)*\nnumber: \u003cdigit\u003e+\nstring_literal: \"'\" \u003cstring_content\u003e \"'\"\nstring_content: \u003ccharacter\u003e*\ntext: \u003ccharacter\u003e*\nletter: [a-zA-Z]\ndigit: [0-9]\ncharacter: any valid character except for single quote\n```\n\n## 📌Lexer output\n\n```\nToken: Value1, Type: 0\nToken: Int, Type: 1\nToken: :, Type: 2\nToken: 100, Type: 4\nToken: Value2, Type: 0\nToken: String, Type: 1\nToken: :, Type: 2\nToken: Hello, Type: 3\nToken: Output, Type: 6\nToken: {, Type: 7\nToken: Value1, Type: 0\nToken: }, Type: 8\nToken: Output, Type: 6\nToken: {, Type: 7\nToken: Value1, Type: 0\nToken: Value2, Type: 0\nToken: }, Type: 8\nToken: Output, Type: 6\nToken: {, Type: 7\nToken: this is a test, Type: 3\nToken: }, Type: 8\nToken: @ comment, Type: 5\nToken: Output, Type: 6\nToken: {, Type: 7\nToken: enter your age, Type: 3\nToken: }, Type: 8\n \n```\n\n## 📌 Parser output\n\n```\nAssignment: Variable = Value1, Value = 100\nAssignment: Variable = Value2, Value = Hello\nOutput: Values = Value1 \nOutput: Values = Value1 Value2 \nOutput: Values = this is a test \nComment:  This line is a comment\nOutput: Values = enter your age \n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkashicode%2Fsimplescript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkashicode%2Fsimplescript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkashicode%2Fsimplescript/lists"}