A port of JAJL 1.0 to C#.
https://jajl.codeberg.page/
- C# 97.8%
- Makefile 2.2%
| Examples | Added hello world example | |
| .gitignore | Updated .gitignore | |
| error.jajl | Made a dotnet project | |
| JAJL-CS.csproj | Made a dotnet project | |
| LICENSE | Initial commit | |
| Makefile | Removed help cmd (1.2 spec) | |
| Program.cs | Removed help cmd (1.2 spec) | |
| README.md | Update README | |
JAJL-CS
Official dialect of the JAJL programming language
JAJL-CS is a port of the original JAJL to C#. It has a few differences from the original, which were primarily a result of compromises made due to the program author's limited C# knowledge at the time.
Installing
Compile From Source
Clone the project:
$ git clone https://codeberg.org/JAJL/JAJL-CS
Then, inside the directory of the cloned repo:
$ dotnet build
This will compile JAJL-CS for your language in the build/ folder.
Downloading a pre-built binary
Go to the releases page and download a release.
Running
Running the executable on its own starts up an interpreter. However, you can also specify a file as an argument, allowing you to run scripts. Some example scripts are located in the Examples/ folder.