y-lang 0.1.3

Compiler & Interpreter for the (rather new and very experimental) Y programming language.
Documentation
import std::* 

let foo := 42

{
    let foo := 13
    printi(foo)
    print(" ")

    foo = 17
    printi(foo)
    print(" ")
}

printi(foo)
print(" ")

foo = 1337
printi(foo)