diff options
Diffstat (limited to 'pattern/string-expr.cmm')
-rw-r--r-- | pattern/string-expr.cmm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pattern/string-expr.cmm b/pattern/string-expr.cmm new file mode 100644 index 0000000..42890b3 --- /dev/null +++ b/pattern/string-expr.cmm @@ -0,0 +1,5 @@ +int main(void) { + int a; + a = 123456 + "STRING"; + return 0; +} |