about summary refs log tree commit diff stats
path: root/js/baba-yaga/scratch/baba/simple.baba
blob: e0f0b33dcff60f079b3480feff1b36fe8272cb4a (plain) (blame)
1
2
3
4
5
6
7
8
x : 2 + 3;
io.out x;
inc : a -> a + 1;
io.out (inc 4);
y : when 1 is
  1 then 10
  _ then 20;
io.out y;