No description
- C 59.2%
- Go 39.4%
- Makefile 0.6%
- Vim Script 0.5%
- Shell 0.3%
| .github/workflows | ||
| .vscode | ||
| examples | ||
| fire | ||
| flc | ||
| flvm | ||
| flvmd | ||
| libraries | ||
| syntax | ||
| validation | ||
| .gitignore | ||
| distrobox.sh | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||
FireStorm
Getting started
Prerequisites
- Clang / LLVM
- Go (1.22 or newer)
Instalation
git clone https://git.toxicfox.de/toxicfox/FireStormcd FireStorm/firego install
Creating a project
mkdir <project name>cd <project name>fire init --name=<project name> --executable
Hello world example
$use <stdlib@1.0.6>
$include <std.fl>
function spark(int argc, str[] argv) -> int {
prints("Hello world!");
return 0;
}