{"id":17970276,"url":"https://github.com/devsnek/slither","last_synced_at":"2025-03-25T11:31:19.674Z","repository":{"id":103443219,"uuid":"169826435","full_name":"devsnek/slither","owner":"devsnek","description":"A programming language for the modern world.","archived":false,"fork":false,"pushed_at":"2019-08-25T23:49:12.000Z","size":1233,"stargazers_count":40,"open_issues_count":1,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-20T01:41:31.408Z","etag":null,"topics":["interpreter","runtime","rust","slither","virtual-machine"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/devsnek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":null,"patreon":"devsnek","open_collective":null,"ko_fi":null,"tidelift":null,"custom":null}},"created_at":"2019-02-09T03:06:38.000Z","updated_at":"2024-04-25T14:18:22.000Z","dependencies_parsed_at":"2023-03-13T15:08:34.817Z","dependency_job_id":null,"html_url":"https://github.com/devsnek/slither","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsnek%2Fslither","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsnek%2Fslither/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsnek%2Fslither/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsnek%2Fslither/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devsnek","download_url":"https://codeload.github.com/devsnek/slither/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245453888,"owners_count":20617937,"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":["interpreter","runtime","rust","slither","virtual-machine"],"created_at":"2024-10-29T15:02:44.316Z","updated_at":"2025-03-25T11:31:19.655Z","avatar_url":"https://github.com/devsnek.png","language":"Rust","funding_links":["https://patreon.com/devsnek"],"categories":[],"sub_categories":[],"readme":"# slither\n\nA modern scripting runtime\n\n```js\nfunction fib(n, a = 0, b = 1) { // argument initializers\n  if n == 0 { // no parenthesis around if or try\n    return a;\n  }\n\n  if n == 1 {\n    return // unambiguous grammar means\n      b;   // that this returns b, not null\n  }\n\n  // tail recursion\n  return fib(n - 1, b, a + b);\n}\n\nprint(fib(10) == 55);\n```\n\nGoals in no particular order\n- staged JIT for good performance\n- fast and easy networking\n- good ffi interface\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsnek%2Fslither","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevsnek%2Fslither","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsnek%2Fslither/lists"}