/Artzlang

A programming language compiling to JavaScript ☻ [Working on lexing system (on hold for now)]

Primary LanguageJavaScriptMIT LicenseMIT

Artzlang

A programming language compiling to JavaScript ☻

Example

test.js

dec test = "This is a string :D";

func dec <param1, param2> {
  kick "hello";
}

compiles to:

let test = "This is a string :D";

function dec (param1, param2) {
  return "hello";
}