mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
19 lines
171 B
Nim
19 lines
171 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
|