alpha-shell 0.3.0

A transpiler for the AlphaShell language
1
2
3
4
5
6
7
8
9
printf("loaded test2\n");

fn test2() {
  for i in 0..3 {
    echo("Hello from test2") | lolcat();
  }
}

test2();