kast 0.1.0

kast programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std.*;

let x :: list[int32] = list[2, 4, 1, 3];

let dbg_list = forall[T] {
    fn (x :: list[T]) {
        for elem :: T in list_iter[_] x {
            dbg elem;
        };
    }
};
dbg_list x;