y-lang 0.1.3

Compiler & Interpreter for the (rather new and very experimental) Y programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import std::*

print("literal ")

let foo := "variable "
print(foo)

let bar := (): str => {
    "function "
}
print(bar())

print({
    "block "
})

print(if true { "if " } else { "else "})
print(if false { "if " } else { "else "})