about summary refs log tree commit diff stats
path: root/js/baba-yaga/scratch/baba/simple_nested_when.baba
blob: 7f7a2583893a3eaba7799ea176cbf8e29598448e (plain) (blame)
1
2
3
4
5
6
7
8
// Simple nested when test
test : x ->
  when x is
    0 then when true is
             true then "nested true"
             false then "nested false"
    1 then "simple case"
    _ then "default";