You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
Can someone please tell how to introduce multiline comment in Pugs?
Perl6 embedded comment doesn't work:
#`(
fdsd
)
say 123
There is multiLineComment in Lexer.hs, so I am assuming it supports some kind of multiline comments,
although I can't figure out which one (I don't know Haskell).
The text was updated successfully, but these errors were encountered:
(on an off chance that you're just trying to use Perl 6 rather than specifically its Pugs implementation, note that there hasn't been any commits in this repo since mid-2015 and the compiler that fully supports Perl 6 is currently Rakudo https://rakudo.org/ )
Pugs multiline comments differ from modern Perl6 embedded comments in two ways: no backtick after # and multiline comment must not start at start of the line.
So this doesn't work:
Can someone please tell how to introduce multiline comment in Pugs?
Perl6 embedded comment doesn't work:
There is
multiLineCommentinLexer.hs, so I am assuming it supports some kind of multiline comments,although I can't figure out which one (I don't know Haskell).
The text was updated successfully, but these errors were encountered: