{"id":22511686,"url":"https://github.com/zeroxthreef/clatter","last_synced_at":"2025-03-28T00:45:39.766Z","repository":{"id":179796182,"uuid":"192644197","full_name":"zeroxthreef/Clatter","owner":"zeroxthreef","description":"A procedural scripting language with even weirder expressions","archived":false,"fork":false,"pushed_at":"2019-06-30T06:59:28.000Z","size":109,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-02T02:41:25.104Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","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/zeroxthreef.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}},"created_at":"2019-06-19T02:29:23.000Z","updated_at":"2019-06-30T06:59:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"affc7637-2226-4e41-9f28-a4fbd3e0d6f8","html_url":"https://github.com/zeroxthreef/Clatter","commit_stats":null,"previous_names":["zeroxthreef/clatter"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroxthreef%2FClatter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroxthreef%2FClatter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroxthreef%2FClatter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroxthreef%2FClatter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeroxthreef","download_url":"https://codeload.github.com/zeroxthreef/Clatter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245949592,"owners_count":20698921,"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":[],"created_at":"2024-12-07T02:13:41.901Z","updated_at":"2025-03-28T00:45:39.761Z","avatar_url":"https://github.com/zeroxthreef.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clatter\nA procedural lang with kinda weird expression handling.\nThe best way to think about this language is all expressions are functions. Pretty much everything can be thought of as a function.\nIt's kind of lisp in the sense of s-expressions, but c-like syntax for the actual expressions.\n\nHeres an example:\n```\nprintsp(+(3 5 8 9))\n```\n\nAnd another more complicated one:\n```\n=(globalTest *(3 6)) //NOTE: all variables declared have to be initialized\n\n//function declaration order shouldn't when calling functions\n\ntestThing(\"hey\" 8)\n\ntestThing(concat1 concat2):\n{\n\t=(final 0)\n\n\tif(\u003c(concat1 concat2))\n\t{\n\t\t+(string(concat1) string(concat2))\n\t}\n\telse()\n\t{\n\t\t+(string(concat2) string(concat1))\n\t}\n\n\tprintsp(\"result:\" final)\n\n\n\t//optional return\n\treturn(1)\n}\n```\n\nAnd an example with a for loop\n\n```\nfor({=(i 0)} {\u003c(i 10)} {=(i +(i 1))})\n{\n\tprintsp(\"hello\" i)\n}\n\n//if you wanted to just loop forever\nfor(0 0 0)\n{\n\tprintsp(\"hello\")\n}\n```\n\nDocumentation will be available soon.\n\n## Using\nUsing utf8.h at https://github.com/sheredom/utf8.h, which uses Unlicense and is public domain as well.\n\n## Dependencies\nUsing a sizeable portion of the C stdlib. Will work to reduce the need in the future.\n\n## License\nClatter is dual-licensed under Unlicense and the MIT license. Choose whichever you want.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeroxthreef%2Fclatter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeroxthreef%2Fclatter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeroxthreef%2Fclatter/lists"}