kast 0.1.0

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

for c :: char in chars "hello, world" {
    if c == 'l' then ( continue );
    if c == ' ' then ( break );
    dbg c;
}