{"id":19440611,"url":"https://github.com/networkexception/script","last_synced_at":"2026-04-18T14:02:45.454Z","repository":{"id":102998853,"uuid":"318855675","full_name":"networkException/script","owner":"networkException","description":"A primitive scripting language I develop when I'm bored","archived":false,"fork":false,"pushed_at":"2020-12-09T23:20:17.000Z","size":156,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-26T00:43:26.968Z","etag":null,"topics":["csharp","interpreter","parser","typescript"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/networkException.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":"2020-12-05T18:05:28.000Z","updated_at":"2020-12-09T23:20:19.000Z","dependencies_parsed_at":"2023-11-03T23:00:23.517Z","dependency_job_id":null,"html_url":"https://github.com/networkException/script","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/networkException/script","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkException%2Fscript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkException%2Fscript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkException%2Fscript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkException%2Fscript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/networkException","download_url":"https://codeload.github.com/networkException/script/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkException%2Fscript/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31971490,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["csharp","interpreter","parser","typescript"],"created_at":"2024-11-10T15:29:48.632Z","updated_at":"2026-04-18T14:02:40.442Z","avatar_url":"https://github.com/networkException.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# networkScript\n\nA primitive scripting language I develop when I'm bored.\n\nThis doesn't aim at anything, I was just very bored\n\n\nInspired by [serenity's](https://github.com/SerenityOS/serenity/) [LibJS](https://github.com/SerenityOS/serenity/tree/master/Libraries/LibJS)\n\n# Licence\n\nAll source code in the scope of this project is licenced under the Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) Licence.\nIn summary you may distribute, modify and use this project as long as it is not with a commercial intend and as long as you give credit to the original source and author.\nFor more detail visit [the creative commons website](https://creativecommons.org/licenses/by-nc/4.0/).\n\n# Example\n\n```ts\nfor (let i = 0; i \u003c 10; i++) {\n    console.log('i is ' + i);\n}\n```\n```\nFor(for) at line 0:0\nParenOpen(() at line 0:4\nLet(let) at line 0:5\nIdentifier(i) at line 0:9\nEquals(=) at line 0:11\nIntLiteral(0) at line 0:13\nSemicolon(;) at line 0:14\nIdentifier(i) at line 0:16\nLess(\u003c) at line 0:18\nIntLiteral(10) at line 0:20\nSemicolon(;) at line 0:22\nIdentifier(i) at line 0:24\nPlusPlus(++) at line 0:25\nParenClose()) at line 0:27\nCurlyOpen({) at line 0:29\nIdentifier(console) at line 1:4\nPeriod(.) at line 1:11\nIdentifier(log) at line 1:12\nParenOpen(() at line 1:15\nStringLiteral(i is ) at line 1:23\nPlus(+) at line 1:24\nIdentifier(i) at line 1:26\nParenClose()) at line 1:27\nSemicolon(;) at line 1:28\nCurlyClose(}) at line 2:0\nEof() at line 2:1\n\nTokenized source in 59 ms (595038 ticks)\n\nBlockStatement\n  ForStatement\n    BinaryExpression\n      VariableDeclaration\n        SymbolList\n          Symbol(i)\n      Reference\n      Value(int: 0)\n    BinaryExpression\n      Identifier(i)\n      Less\n      Value(int: 10)\n    PostfixExpression\n      Increment\n      Identifier(i)\n    BlockStatement\n      ExpressionStatement\n        CallExpression\n          MemberExpression\n            Identifier(console)\n            Symbol(log)\n          BinaryExpression\n            Value(string: 'i is ')\n            Add\n            Identifier(i)\n\nParsed tokens in 3 ms (33953 ticks)\n\ni is 0\ni is 1\ni is 2\ni is 3\ni is 4\ni is 5\ni is 6\ni is 7\ni is 8\ni is 9\n\nInterpreted tree in 6 ms (65892 ticks)\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworkexception%2Fscript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetworkexception%2Fscript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworkexception%2Fscript/lists"}