{"id":18336214,"url":"https://github.com/terahlunah/fox","last_synced_at":"2025-04-09T19:55:01.849Z","repository":{"id":44630705,"uuid":"507631235","full_name":"terahlunah/fox","owner":"terahlunah","description":"Work in progress concatenative language interpreter, expect breakages and api changes","archived":false,"fork":false,"pushed_at":"2023-06-22T08:55:16.000Z","size":36,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-09T19:54:58.208Z","etag":null,"topics":["compiler","concatenative","design","language"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/terahlunah.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":"2022-06-26T16:49:13.000Z","updated_at":"2023-08-03T13:39:51.000Z","dependencies_parsed_at":"2024-12-23T15:26:01.463Z","dependency_job_id":"f4d84284-31c4-438e-9e26-2d0b1b8cb76b","html_url":"https://github.com/terahlunah/fox","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terahlunah%2Ffox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terahlunah%2Ffox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terahlunah%2Ffox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terahlunah%2Ffox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/terahlunah","download_url":"https://codeload.github.com/terahlunah/fox/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248103911,"owners_count":21048245,"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":["compiler","concatenative","design","language"],"created_at":"2024-11-05T20:06:52.943Z","updated_at":"2025-04-09T19:55:01.820Z","avatar_url":"https://github.com/terahlunah.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fox 🦊 \n\n_Warning: this is a WIP language_\n\nFox is a statically typed, stack-based, concatenative programming language.  \nIt is designed to balance minimalism and ergonomics.\n\nDesign was inspired by Kitten, Rust, Haskell and F#.\n\n---\n\n## Features\n\n- ### Concatenative\n  The main operation in Fox is function composition.\n  This makes refactoring program an easy task.\n\n- ### Stack Based\n  Functions work by operating on the stack. \n  Code is mostly written in point free style, but Fox also support named binding.\n\n- ### Statically Typed\n  Type checking happens at compile time. This ensures code correctness.\n\n- ### Standalone Interpreter\n  The standalone interpreter allows `.fox` files to be run directly from the command line  \n  ```$\u003e fox my_script.fox```\n\n- ### Rust Interface\n  Being built with rust, Fox (will) come with a simple-to-use interface to embed Fox scripts in your programs.\n\n\n---\n\n## [Language overview](language.md)\n\nAn overview of the language.\n\n---\n\n## Examples\n\n- Hello world\n```\n\"Hello world!\" print                # `print` consume a `String` from the top of the stack and prints it\n```  \n\n- Greeter\n```\ndef greet = \n    -\u003e name                         # pop the top stack value and store it in `name`\n    [\"Hello, \", name, \"!\"] concat   # concat convert a `String List` to a `String`\n    print                           # `print` consume a `String` from the top of the stack and prints it\n\n\"What is your name? \" prompt        # `prompt` push a `String` on the stack from user input\ngreet                               # `greet` consume a `String` from the stack and greets the user\n```\n\n- [Factorial](examples/fact.fox)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterahlunah%2Ffox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fterahlunah%2Ffox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterahlunah%2Ffox/lists"}