{"id":18412757,"url":"https://github.com/hexaredecimal/falcon","last_synced_at":"2025-10-07T22:35:56.180Z","repository":{"id":154185942,"uuid":"607133955","full_name":"hexaredecimal/falcon","owner":"hexaredecimal","description":null,"archived":false,"fork":false,"pushed_at":"2023-02-27T11:42:27.000Z","size":562,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T23:47:17.702Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/hexaredecimal.png","metadata":{"files":{"readme":"README.rst","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":"2023-02-27T11:40:02.000Z","updated_at":"2023-02-27T11:42:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"9c46d24b-8ee4-4393-b2b6-7025eea166b7","html_url":"https://github.com/hexaredecimal/falcon","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/hexaredecimal%2Ffalcon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexaredecimal%2Ffalcon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexaredecimal%2Ffalcon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexaredecimal%2Ffalcon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hexaredecimal","download_url":"https://codeload.github.com/hexaredecimal/falcon/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248647256,"owners_count":21139081,"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-11-06T03:43:26.492Z","updated_at":"2025-10-07T22:35:51.132Z","avatar_url":"https://github.com/hexaredecimal.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Falcon\n=======\n\nFalcon is a Python-like programming language compiler and transpiler.\n\nThe project contains:\n\n- Regular expression based lexer\n- Top-down recursive descent parser\n- AST-walking codegen\n- REPL \n- CPP transpiler\n- CPP compilation and linkage (debug symbols included)\n- Static typing (missing a type checker)\n- Dinamic typing (using auto, not generics)\n- Built-in stdlib (no imports for Built-in functions and symbols)\n- Inline C++ \n\n\nStill missing:\n- Type checking \n- Type based errors\n- Include files (make proper use of include files)\n- Inline assembly\n\nFalcon doesn't require any third-party libraries.\n\nWhat the language looks like:\n\n.. code-block::\n    func main() -\u003e i32:\n        let fp: file = open(\"./loops.flc\", \"r\")\n        let buffer: string = readfile(fp)\n        print(buffer)\n        closefile(fp)\n\n        return 0\n\n\n.. code-block::\n    func dup(x: string, count: i32) -\u003e string:\n        let result: string = \"\"\n        for i in 1 .. count:\n            result = result + x\n\n        return result\n\n    func main() -\u003e i32:\n        println(dup(\"-\", 50))\n\n        for i in 1 .. 5:\n            for j in 1 .. i:\n                print(\"*\")\n            println(\"\")\n\nYou can find more examples in ``tests`` directory.\n\nHow to try it:\n\nRequirements:\n- Python 3.x.x\n- GCC (with -std=c++20 support)\n.. code-block::\n    \n    git clone https://github.com/vulture/falcon.git\n    cd falcon\n    make all tests\n    ./test/array\n    ...\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexaredecimal%2Ffalcon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhexaredecimal%2Ffalcon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexaredecimal%2Ffalcon/lists"}