fixes multiline comments

This commit is contained in:
Andreas Rumpf
2016-01-17 21:42:13 +01:00
parent 2c2ab6884c
commit 71cf1f650e
2 changed files with 20 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ proc main* =
Yay, that is so cool.
]##
echo "foo bar"
for s in ["one", "two", #["three",]# "four"]:
echo s
var foo #[ Test the new inline comments ]#: int = 3
##[ A
@@ -16,3 +18,17 @@ novel documentation comment
]#
]##
echo $foo
#[Comment here.
Multiple lines
are not a problem.]#
#[ #[ Multiline comment in already
commented out code. ]#
proc p[T](x: T) = discard
]#
proc bar =
##[Long documentation comment
here.
]##