summary refs log tree commit diff stats
path: root/tests/parser/tifexprs.nim
blob: 3a7e2bddc61c763af2983839043bfc00dd3b7ff2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  output: '''
1
'''
"""

var a, b: int
let x = if a > b:
    0
    else: 1

echo x