Skip to content

tomcur/spl-compiler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A compiler for the &SPL language.

&SPL

&SPL is an acronym for Simple Programming Language, and is a C-like imperative programming language, with classes, lists, and tuples. For example, the following code produces the Fibonacci sequence.

#include "stdlib/std.spl"
// Output the Fibonacci sequence
main ()
{
    var t1 = 0;
    var t2 = 1;
    while(True) {
        println(t2);
        var h = t1 + t2;
        t1 = t2;
        t2 = h;
    }
}

Compiling

> Lib.compile
> "program.spl"

Pretty printing

> Lib.prettyPrint
> "program.spl"

About

A compiler for a simple programming language.

Resources

License

Stars

Watchers

Forks

Packages

No packages published