{"id":15980623,"url":"https://github.com/jsmonk/guu-graal","last_synced_at":"2025-09-15T08:40:28.779Z","repository":{"id":99012442,"uuid":"321143379","full_name":"JSMonk/guu-graal","owner":"JSMonk","description":"Implementation of Guu lang in Truffle Framwork","archived":false,"fork":false,"pushed_at":"2020-12-20T10:28:23.000Z","size":19,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-12T01:32:45.202Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JSMonk.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-13T19:28:49.000Z","updated_at":"2023-03-10T08:15:22.000Z","dependencies_parsed_at":"2023-05-16T16:16:11.934Z","dependency_job_id":null,"html_url":"https://github.com/JSMonk/guu-graal","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JSMonk/guu-graal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSMonk%2Fguu-graal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSMonk%2Fguu-graal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSMonk%2Fguu-graal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSMonk%2Fguu-graal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JSMonk","download_url":"https://codeload.github.com/JSMonk/guu-graal/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSMonk%2Fguu-graal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275230678,"owners_count":25428070,"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-09-15T02:00:09.272Z","response_time":75,"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":[],"created_at":"2024-10-08T00:21:19.531Z","updated_at":"2025-09-15T08:40:28.771Z","avatar_url":"https://github.com/JSMonk.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TruffleGuu \nsimple AST interpreter for Guu language\n\nGuu program is a collection of procedures. Every procedure begins with the `sub` keyword and the name of the procedure and ends with other procedure declaration (or with file end if the procedure is final). Execution starts from the `main` procedure\n\nA procedure body is an instructions sequence. At the start of a line can be any count of spaces and tabs. Empty lines should be ignored.\nGuu has a one line comment blocks with `#` symbol.\n\nGuu has only three statements:\n- `set (varname) (new value)` - set a new value to variable. \n- `call (subname)` - call a procedure (calls can be recursive).\n- `print (varname)` - print a value of variable.\n\nVariables in Guu language exist only in the global scope. So, the next program will print `2`: \n\n ```\n# this is `main` procedure\nsub main:\n    set a 1  # create `a` variable\n    call foo # call procedure\n    print a  # print expression\n\n# this is procedure which is called in `main` procedure\nsub foo:\n    set a 2  # assign 2 as `a` variable value\n ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsmonk%2Fguu-graal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsmonk%2Fguu-graal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsmonk%2Fguu-graal/lists"}