mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
19 lines
170 B
Nim
19 lines
170 B
Nim
|
|
var x: int = 2
|
|
|
|
echo x
|
|
# bug #9144
|
|
|
|
proc a() =
|
|
while true:
|
|
discard
|
|
# comment 1
|
|
|
|
# comment 2
|
|
discard
|
|
|
|
# bug #15596
|
|
discard## comment 3
|
|
|
|
discard # comment 4
|