{"id":16380152,"url":"https://github.com/felixklauke/slug-java","last_synced_at":"2025-07-31T02:11:36.424Z","repository":{"id":48423967,"uuid":"121101370","full_name":"felixklauke/slug-java","owner":"felixklauke","description":"Java implementation of a simple proof of concept interpreted programming language SLUG (Simple Language).","archived":false,"fork":false,"pushed_at":"2023-04-20T05:04:04.000Z","size":295,"stargazers_count":4,"open_issues_count":16,"forks_count":1,"subscribers_count":2,"default_branch":"dev","last_synced_at":"2025-04-04T12:12:07.669Z","etag":null,"topics":["interpreted-programming-language","interpreter","java","language","lexer","own-language"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/felixklauke.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":["FelixKlauke"]}},"created_at":"2018-02-11T08:15:52.000Z","updated_at":"2024-11-28T14:32:57.000Z","dependencies_parsed_at":"2024-10-28T15:24:00.812Z","dependency_job_id":"dffcde0a-0a9b-43ea-883b-6ca9d90656cc","html_url":"https://github.com/felixklauke/slug-java","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/felixklauke/slug-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fslug-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fslug-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fslug-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fslug-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/felixklauke","download_url":"https://codeload.github.com/felixklauke/slug-java/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fslug-java/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267977174,"owners_count":24175091,"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","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"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":["interpreted-programming-language","interpreter","java","language","lexer","own-language"],"created_at":"2024-10-11T03:50:35.656Z","updated_at":"2025-07-31T02:11:36.408Z","avatar_url":"https://github.com/felixklauke.png","language":"Java","funding_links":["https://github.com/sponsors/FelixKlauke"],"categories":[],"sub_categories":[],"readme":"# slug-java\nJava implementation of my interpreted programming language SLUG (Simple Language).\n\nThe language is currently under heavy development and syntax and other language related things may change. \n\nFeature and bug-fix requests are welcome.\n\n# Build Status\n|             \t| Build Status                                                                                                                                              \t| Test Code Coverage                                                                                                                                               \t|\n|-------------\t|-----------------------------------------------------------------------------------------------------------------------------------------------------------\t|------------------------------------------------------------------------------------------------------------------------------------------------------------------\t|\n| Master      \t| [![Build Status](https://travis-ci.org/FelixKlauke/slug-java.svg?branch=master)](https://travis-ci.org/FelixKlauke/slug-java) \t| [![codecov](https://codecov.io/gh/FelixKlauke/slug-java/branch/master/graph/badge.svg)](https://codecov.io/gh/FelixKlauke/slug-java) \t|\n| Development \t| [![Build Status](https://travis-ci.org/FelixKlauke/slug-java.svg?branch=dev)](https://travis-ci.org/FelixKlauke/slug-java)    \t| [![codecov](https://codecov.io/gh/FelixKlauke/slug-java/branch/dev/graph/badge.svg)](https://codecov.io/gh/FelixKlauke/slug-java)    \t|\n\n# Features\n\n- [X] Basic structure\n- [X] Functions\n- [X] Variables (int, string, bool)\n- [X] Scopes\n- [X] Boolean expression (myInt == otherInt, \"test\" == \"test\", 4 \u003e 3)\n- [X] Conditionals (if, for, while)\n- [X] Internal functions (WriteLine, ReadLine, Random, etc.)\n- [X] Function calls\n- [X] Function parameters\n    - [ ] Default values for parameters\n- [ ] Classes\n    - [ ] New instance creation\n    - [ ] Member variables\n    - [ ] Auto member variable constructor\n- [X] Inline string variables (string s = \"Hello $myOtherString\", WriteLine(\"Your rank is $rank with a score of $score\"))\n- [ ] Inline string expression evaluation (string s = \"Number is ${2 + 9}\")\n\n# Example GuessIt game\n\nThe GuessIt game is a simple CLI game where the user needs to guess a random generated number from 1-100. If the guessed number is too small, the game prints that and the other way around until the correct number has been found.\n\n![slug-guess-it](docs/images/slug-guess-it.png)\n\n\n# TDD (Test Driven Development)\n\nThe goal is to get as near as possible to a 100% test coverage and to test every feature while it is being developed.\n\n### License\n\nLicensed under the  Apache License, Version 2.0.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelixklauke%2Fslug-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffelixklauke%2Fslug-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelixklauke%2Fslug-java/lists"}