{"id":22272651,"url":"https://github.com/space-boy-industries/basic-computing","last_synced_at":"2025-03-25T16:25:53.529Z","repository":{"id":265623928,"uuid":"896297171","full_name":"Space-Boy-Industries/basic-computing","owner":"Space-Boy-Industries","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-15T19:51:11.000Z","size":4587,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-30T14:39:19.766Z","etag":null,"topics":["basic","computer","fabric","minecraft","minecraft-mod","programming"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/Space-Boy-Industries.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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-11-30T01:49:37.000Z","updated_at":"2024-12-08T17:35:00.000Z","dependencies_parsed_at":"2025-01-30T14:43:33.001Z","dependency_job_id":null,"html_url":"https://github.com/Space-Boy-Industries/basic-computing","commit_stats":null,"previous_names":["space-boy-industries/basic-computing"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Space-Boy-Industries%2Fbasic-computing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Space-Boy-Industries%2Fbasic-computing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Space-Boy-Industries%2Fbasic-computing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Space-Boy-Industries%2Fbasic-computing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Space-Boy-Industries","download_url":"https://codeload.github.com/Space-Boy-Industries/basic-computing/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245498494,"owners_count":20625191,"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":["basic","computer","fabric","minecraft","minecraft-mod","programming"],"created_at":"2024-12-03T13:07:57.004Z","updated_at":"2025-03-25T16:25:53.500Z","avatar_url":"https://github.com/Space-Boy-Industries.png","language":"Kotlin","readme":"# Basic Computing\nWIP mod to add BASIC Computers to Minecraft. The goal is to create a computer mod that captures the nostalgic experience of retro computer systems while also still be accessible/useful to minecraft players.\n\n## K-Basic (Name Pending)\nK-Basic is the custom BASIC implementation that is used in this mod. It is a simple BASIC interpreter that is designed to be easy to use and understand.\n\n### Features\n- Variables\n- Arithmetic Operations\n- Boolean Operations\n- Basic Control Flow\n\n### Example Code\n```BASIC\nLET A = 5\nLET B = 10\nLET C = A + B\n\nIF C \u003e 10 PRINT \"C is greater than 10\"\nIF C \u003c 10 PRINT \"C is less than 10\"\nIF C == 10 PRINT \"C is equal to 10\"\n```\n\n### Grammar\n```BNF\n\u003cprogram\u003e       ::= \u003cstatement\u003e+ \n\n\u003cstatement\u003e     ::= \u003cassignment\u003e\n                | \u003cprint\u003e\n                | \u003clabel\u003e\n                | \u003cgoto\u003e\n                | \u003cif\u003e\n\n\u003cassignment\u003e    ::= \"LET\" \u003cvariable\u003e \"=\" \u003cexpression\u003e\n\n\u003cprint\u003e         ::= \"PRINT\" \u003cexpression\u003e\n\n\u003clabel\u003e         ::= \"LABEL\" \u003cvariable\u003e\n\n\u003cgoto\u003e          ::= \"GOTO\" \u003cvariable\u003e\n\n\u003cif\u003e            ::= \"IF\" \u003cexpression\u003e \u003cstatement\u003e\n\n\u003cexpression\u003e    ::= \u003cterm\u003e { (\"+\" | \"-\" | \"==\" | \"!=\" | \"\u003e\" | \"\u003c\" | \"\u003e=\" | \"\u003c=\") \u003cterm\u003e }\n\n\u003cterm\u003e          ::= \u003cfactor\u003e { (\"*\" | \"/\") \u003cfactor\u003e }\n\n\u003cfactor\u003e        ::= \u003cnumber\u003e \n                | \u003cvariable\u003e \n                | \u003cstring_literal\u003e \n                | \"(\" \u003cexpression\u003e \")\"\n\n\u003cnumber\u003e        ::= [0-9]+\n\n\u003cvariable\u003e      ::= [a-zA-Z_][a-zA-Z0-9_]*\n\n\u003cstring_literal\u003e ::= '\"' \u003ccharacter\u003e* '\"'\n\n\u003ccharacter\u003e     ::= [a-zA-Z0-9!#$%\u0026'()*+,-./:;\u003c=\u003e?@[\\\\]^_`{|}~]\n\n\u003coperator\u003e      ::= \"+\" | \"-\" | \"*\" | \"/\" | \"=\" | \"==\" | \"!=\" | \"\u003e\" | \"\u003c\" | \"\u003e=\" | \"\u003c=\"\n\n\u003cleft_paren\u003e    ::= \"(\"\n\n\u003cright_paren\u003e   ::= \")\"\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspace-boy-industries%2Fbasic-computing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspace-boy-industries%2Fbasic-computing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspace-boy-industries%2Fbasic-computing/lists"}