kast 0.1.0

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

const test = fn(T :: type) {
    ()
};

const test2 = fn(T :: type) {
    test(T);
    comptime dbg T;
    test(T, T);
    comptime print "hi";
    comptime dbg T;
};

comptime dbg test;
comptime dbg test2;
#test2 ();