// test macro

: or a b = if a 1 else b

to test | x y a =
  x = 11
  y = 22
  if or x y
    a = 1
  else
    a = 0
