Skip to content

Instantly share code, notes, and snippets.

@bogen
Forked from anonymous/gist:4fabe7421046e7648829
Last active August 29, 2015 14:04
Show Gist options
  • Save bogen/e40d87c57f2b8c302b3a to your computer and use it in GitHub Desktop.
Save bogen/e40d87c57f2b8c302b3a to your computer and use it in GitHub Desktop.
TRIPLESTR_LIT not working in places where STR_LIT does work
one
two
three dogs
four"
five
SIGSEGV: Illegal storage access. (Attempt to read from nil?)
#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