{"id":19373061,"url":"https://github.com/mayugestudio/piled","last_synced_at":"2026-06-08T21:33:00.138Z","repository":{"id":253367391,"uuid":"843178026","full_name":"MayugeStudio/piled","owner":"MayugeStudio","description":"Stack-Based Programming language","archived":false,"fork":false,"pushed_at":"2026-03-10T10:41:55.000Z","size":217,"stargazers_count":1,"open_issues_count":10,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-10T16:57:19.978Z","etag":null,"topics":["programming-language","stack-based"],"latest_commit_sha":null,"homepage":"","language":"Go","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/MayugeStudio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-16T00:21:44.000Z","updated_at":"2026-03-10T10:42:00.000Z","dependencies_parsed_at":"2024-08-24T10:28:55.053Z","dependency_job_id":"66ea99ac-c296-4f38-8f8c-84ce3037970b","html_url":"https://github.com/MayugeStudio/piled","commit_stats":null,"previous_names":["mayugestudio/piled"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MayugeStudio/piled","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MayugeStudio%2Fpiled","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MayugeStudio%2Fpiled/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MayugeStudio%2Fpiled/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MayugeStudio%2Fpiled/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MayugeStudio","download_url":"https://codeload.github.com/MayugeStudio/piled/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MayugeStudio%2Fpiled/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34082130,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"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":["programming-language","stack-based"],"created_at":"2024-11-10T08:26:34.287Z","updated_at":"2026-06-08T21:33:00.131Z","avatar_url":"https://github.com/MayugeStudio.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Piled\n\nA simple stack based programming language implemented in Golang.\nThere is no memory concept in piled but only stack.\n\n\u003e [!WARNING]\n\u003e This is not serious project. Just a recreational one.\n\n## Example\n\n### Arithmetic Operators\n```\n4 2 + print\n4 2 - print\n4 2 * print\n4 2 / print\n```\n\nPiled supports basic arithmetic operators such as +, -, *, /.\n\nThe output of the above program should be\n```\n6\n2\n8\n2\n```\n\n### Conditional expressions\n\nPiled supports conditionals.\n\n```\n100 0 \u003e if {\n    255 print\n} else {\n    0 print\n}\n```\n\nSince 100 is greater than 0, the above Piled program should output 255. \n\n### Loop\n\nPiled supports loops.\n\n```\n10 while dup 0 \u003e {\n    dup print\n    1 -\n}\n```\n\nThe above program should output\n```\n10\n9\n8\n7\n..\n1\n```\n\nThe sequence of words between `while` and `{` are considered the condition and\nthey are executed at each step of loop.\n\n## Usage\n\n#### Run a program from a file\n\n```console\n./piled compile \u003cfilename\u003e\n./piled run     \u003cfilename\u003e\n```\n\n#### REPL\n\n```console\n./piled\n```\n\nJust compile this project and run `./piled`.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayugestudio%2Fpiled","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmayugestudio%2Fpiled","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayugestudio%2Fpiled/lists"}