Skip to content

olegp/tyro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tyro compiles source to bytecode and runs the bytecode on a stack based, JVM like, virtual machine

Here's an example of the code you can run:

    a = 1;
    b = 1;
    while(b < 1000000000) {
      print(b);
      c = b + a;
      a = b;
      b = c;
    }

About

A simple compiler and VM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published