mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
13 lines
95 B
Nim
13 lines
95 B
Nim
discard """
|
|
output: '''
|
|
1
|
|
'''
|
|
"""
|
|
|
|
var a, b: int
|
|
let x = if a > b:
|
|
0
|
|
else: 1
|
|
|
|
echo x
|