1
0
Fork
You've already forked JAJL-CS
0
A port of JAJL 1.0 to C#. https://jajl.codeberg.page/
  • C# 97.8%
  • Makefile 2.2%
2024年05月25日 00:16:18 +01:00
Examples Added hello world example 2023年11月29日 01:00:12 +00:00
.gitignore Updated .gitignore 2024年05月19日 21:54:23 +01:00
error.jajl Made a dotnet project 2024年05月19日 16:06:27 +01:00
JAJL-CS.csproj Made a dotnet project 2024年05月19日 16:06:27 +01:00
LICENSE Initial commit 2023年11月28日 19:55:18 +00:00
Makefile Removed help cmd (1.2 spec) 2024年05月25日 00:16:05 +01:00
Program.cs Removed help cmd (1.2 spec) 2024年05月25日 00:16:05 +01:00
README.md Update README 2024年05月19日 21:55:56 +01:00

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.