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


             
    
   

   







                                                    
                                              
                                                                                  


           
 
                                                           








             
discard """
  output: '''
3
0
true
'''
"""


# bug #798
template t012{(0|1|2){x}}(x: untyped): untyped = x+1
let z = 1
# outputs 3 thanks to fixpoint iteration:
echo z


template arithOps: untyped = (`+` | `-` | `*`)
template testOr{ (arithOps{f})(a, b) }(a, b, f: untyped): untyped = f(a mod 10, b)

let xx = 10
echo 10*xx

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

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