kast 0.1.0

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

# TODO smth
const unsafe :: type = newtype :Unsafe;

let unsafe_fn = fn (s :: string) with unsafe {
    print s;
};

(
    with :Unsafe :: unsafe;
    unsafe_fn "hello";
)