-
-
Save bogen/e40d87c57f2b8c302b3a to your computer and use it in GitHub Desktop.
TRIPLESTR_LIT not working in places where STR_LIT does work
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
one | |
two | |
three dogs | |
four" | |
five | |
SIGSEGV: Illegal storage access. (Attempt to read from nil?) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import macros | |
macro foo (first, second : expr) : stmt = | |
echo first | |
echo second | |
echo "" | |
discard | |
foo one, two | |
foo "three dogs", "four\"" | |
foo five, """six""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment