about summary refs log tree commit diff stats
path: root/js/scripting-lang/baba-yaga-c/test_simple_when.txt
blob: 9241c9708c241a7e675e807e4834d9f68152e448 (plain) (blame)
1
2
3
4
5
6
7
8
/* Test simple when expression */

/* Test simple when expression */
x : 5;
result : when x is
    5 then "Five"
    _ then "Other";
..out result;