summary refs log tree commit diff stats
path: root/tests/misc/tcharinc.nim
blob: 1b5d19c18f8199dd06da3be3000fa686a352d105 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  output: "1"
"""

var c = '\0'
while true:
  if c == '\xFF': break
  inc c

echo "1"