harborc 0.1.1

A language that ports: targeting your thermostat, UFO, and kitchen sink.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

fn putnumln(n: int) -> void =
    do 
        putnum(n);
        putchar('\n');
    end
in

// Invalid type signature for return type
fn test(n: int) -> void =
    n + 1
in
    do
        // Undefined variable `f`
        // Invalid syntax
        putnumln(f(5);
    end