about summary refs log tree commit diff stats
path: root/js/baba-yaga/scratch/baba/test_logical_and.baba
blob: 0b2b56596c8968da1e7ae2e65dea053654a4e7ce (plain) (blame)
1
2
3
4
5
6
7
// Test logical and in when discriminant
test : x y ->
  when x and y is
    true then "both true"
    false then "at least one false";

result : test true false;