Skip to content

Instantly share code, notes, and snippets.

@natefaubion
Created June 19, 2014 20:24
Show Gist options
  • Save natefaubion/74e4d6d1440d9baa5c05 to your computer and use it in GitHub Desktop.
Save natefaubion/74e4d6d1440d9baa5c05 to your computer and use it in GitHub Desktop.
macro to_str {
case { _ ($toks ...) } => {
return [makeValue(#{ $toks ... }.map(unwrapSyntax).join(''), #{ here })];
}
}
to_str(1 2 3 4)
// '1234'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment