mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
9 lines
256 B
Nim
9 lines
256 B
Nim
const
|
|
VERSION_STR1* = "0.5.0" ## Idetools shifts this one column.
|
|
VERSION_STR2 = "0.5.0" ## This one is ok.
|
|
VERSION_STR3* = "0.5.0" ## Bad.
|
|
VERSION_STR4 = "0.5.0" ## Ok.
|
|
|
|
proc forward1*(): string = result = ""
|
|
proc forward2(): string = result = ""
|