diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-17 11:22:59 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-17 11:22:59 -0700 |
commit | 2199940af170456929a3c4fe4d07d25afea6ae55 (patch) | |
tree | 178c2f4a4188c19da3bfd1a0b3f32ec6a82880e6 /cpp/013literal_string | |
parent | c18e17f22feaf308376f53f2f61775ddad0e4a9d (diff) | |
download | mu-2199940af170456929a3c4fe4d07d25afea6ae55.tar.gz |
1077
Diffstat (limited to 'cpp/013literal_string')
-rw-r--r-- | cpp/013literal_string | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/013literal_string b/cpp/013literal_string index f56cb928..8dc8c1b5 100644 --- a/cpp/013literal_string +++ b/cpp/013literal_string @@ -1,11 +1,10 @@ -//: Some instructions can take string literals for convenience. +//: For convenience, some instructions will take literal arrays of characters (strings). //: //: Instead of quotes, we'll use [] to delimit strings. That'll reduce the //: need for escaping since we can support nested brackets. And we can also //: imagine that 'recipe' might one day itself be defined in mu, doing its own //: parsing. -//: First extend the mu parser to support string literals. :(scenario "string_literal") recipe main [ 1:address:array:character <- new [abc def] |