mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-29 01:51:43 +00:00
fixes #25387 https://stackoverflow.com/questions/30286253/how-to-escape-backslash-in-comment - adding a whitespace or `\t` after `\` breaks the `goto` block - `\* *\` doesn't support nesting, causing problems for using it in the Nim comments
8 lines
117 B
Nim
8 lines
117 B
Nim
discard """
|
|
matrix: "--embedsrc=on"
|
|
"""
|
|
|
|
proc trim() =
|
|
let s = 10
|
|
let x = s + 5 # user entered literal \
|
|
trim() |