{"id":20468782,"url":"https://github.com/rexionmars/snake-lang","last_synced_at":"2026-05-10T07:56:18.444Z","repository":{"id":153871257,"uuid":"630154150","full_name":"rexionmars/snake-lang","owner":"rexionmars","description":"SNAKE is a Concatenative Stack-Oriented Programming Language","archived":false,"fork":false,"pushed_at":"2023-06-30T19:43:54.000Z","size":760,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-09T04:08:14.248Z","etag":null,"topics":["assembly","bytecode","compiled-language","concatenative-programming-language","linux","native","programming-language","stack-based","x86-64"],"latest_commit_sha":null,"homepage":"","language":"Python","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/rexionmars.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,"zenodo":null},"funding":{"github":"rexionmars","ko_fi":"rexionmars"}},"created_at":"2023-04-19T19:29:39.000Z","updated_at":"2023-07-17T22:53:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"3c63e3d0-b2af-49d9-a348-1334c6f5e672","html_url":"https://github.com/rexionmars/snake-lang","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rexionmars/snake-lang","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexionmars%2Fsnake-lang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexionmars%2Fsnake-lang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexionmars%2Fsnake-lang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexionmars%2Fsnake-lang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rexionmars","download_url":"https://codeload.github.com/rexionmars/snake-lang/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexionmars%2Fsnake-lang/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278838434,"owners_count":26054720,"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-10-07T02:00:06.786Z","response_time":59,"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":["assembly","bytecode","compiled-language","concatenative-programming-language","linux","native","programming-language","stack-based","x86-64"],"created_at":"2024-11-15T14:06:52.369Z","updated_at":"2025-10-07T20:09:25.751Z","avatar_url":"https://github.com/rexionmars.png","language":"Python","funding_links":["https://github.com/sponsors/rexionmars","https://ko-fi.com/rexionmars"],"categories":[],"sub_categories":[],"readme":"[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n![](https://img.shields.io/github/languages/count/rexionmars/snake-lang?color=red)\n![](https://img.shields.io/github/issues-pr/rexionmars/snake-lang)\n![](https://img.shields.io/github/issues/rexionmars/snake-lang?color=pink)\n![](https://img.shields.io/github/issues-pr/rexionmars/snake-lang?color=orange)\n\n\u003cimg src=\"thumbnail/snake_banner.jpg\" alt=\"Snake logo\"\u003e\nSNAKE is a Concatenative Stack-Oriented Programming Language.\nThis will be updated soon\n\n\u003c!-- ## Compilation target for platforms\n\u003cimg src=\"thumbnail/target_compile.jpg\" alt=\"Snake Target Compile\"\u003e --\u003e\n\n## Main characteristics\n- [x] Compiled\n- [x] Native\n- [x] Stack-based\n\n## Quick Start\n```sh\n$ git clone https://github.com/rexionmars/snake.git\n```\n```sh\n$ cd snake\n```\n\n## Folder Structure\n```lua\ndocs/refs/\n  |\n  +-- Documentations and references\n  \ncontainer/\n  |\n  +-- Standard scripts from translate code (temporary)\n  \nsnake.py\n  |\n  +-- This file is the principal and contain base functions\n\n```\n## SNAKE usage\nSanake has two modes of operation, the first mode to Simulate the program, and the second mode to Compile the program.\u003cbr\u003e\u003cbr\u003e\nSNAKE without parameters returns the help menu\n```sh\n$ ./snake.py\n```\nsimulate program\n```sh\n$ ./snake.py run \u003cargs\u003e\n```\nor compile the program x86_64 Linux\n```sh\n$ ./snake.py compile \u003cargs\u003e\n```\nthis will generate an x86_64 Linux executable, in the tests folder\n```sh\n$ cd tests \u0026\u0026 ./output\n```\n\n## Your first Hello World in SNAKE (in initial state)\nA simple example using PUSH, PLUS, MINUS, DUMP\u003cbr\u003e\nUse your favorite editor, i love neovim\n```sh\n$ nvim sun.snake\n```\nExample 1: sun two numbers\n```sh\n49 99 + .\n```\nExample 2: subtrac two numbers\n```sh\n13 9 - .\n```\nExample 3: if condition\n```sh\n17 1 + 18 = if\n    700 .\nend\n```\n\n## Contributors\n![GitHub Contributors Image](https://contrib.rocks/image?repo=rexionmars/snake-lang)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frexionmars%2Fsnake-lang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frexionmars%2Fsnake-lang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frexionmars%2Fsnake-lang/lists"}