summary refs log blame commit diff stats
path: root/tests/patterns/tor.nim
blob: 7de1a7fa16164d38622e997b18b528a07650afc9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
           

                






                                                                       










                                                          
discard """
  output: '''110
true'''
"""

template arithOps: expr = (`+` | `-` | `*`)
template testOr{ (arithOps{f})(a, b) }(a, b, f: expr): expr = f(a+1, b)

let xx = 10
echo 10*xx

template t{x = (~x){y} and (~x){z}}(x, y, z: bool): stmt =
  x = y
  if x: x = z

var
  a = true
  b = true
  c = false
a = b and a
echo a