Skip to content

stefan-brus/exlang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

exlang

Experimental programming language.

Examples

Hello, World!

def main() Void:
  print("Hello, World!");

The very first, historical, exlang program, that interprets and runs

def main() Void:
  let v = 3;
  let w = 4;
  // This is a crazy comment
  printnum(myfunc(v, w));

def myfunc(x : Int, y : Int) Int:
  printnum(x);
  printnum(y);
  ret x + y + 1;

About

Experimental programming language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages