kast 0.1.0

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

let result = unwindable outer (
  unwindable inner (
    print "hi";
    unwind outer "im out";
    print "this will never be printed";
    "this is not the result"
  )
);
dbg result;