kast 0.1.0

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

let mut map = HashMap_new ();
map = HashMap_insert (map, "hello", "world");
map = HashMap_insert (map, "second", "2");
#dbg map;
dbg (HashMap_size map);
dbg (HashMap_get (map, "hello"));
dbg (HashMap_get (map, "world"));

for key :: string, value :: string in HashMap_iter map {
    print "iterated";
};