diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-20 14:20:54 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-20 14:20:54 -0400 |
| commit | 17ec9006f96197b241278a9fcbaa507e63e15611 (patch) | |
| tree | b0855c3cbecb8d89cd8d1455e6ba2ce707d094e3 /test/text.tm | |
| parent | 981da7f0c6c47f66120482e7a7885cb5719d6959 (diff) | |
Simplify quotes by limiting to `,',"
Diffstat (limited to 'test/text.tm')
| -rw-r--r-- | test/text.tm | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/test/text.tm b/test/text.tm index 46e1ae41..84c5a2a3 100644 --- a/test/text.tm +++ b/test/text.tm @@ -107,17 +107,10 @@ func main() = "A 3" >> "A \$(1+2)" = "A \$(1+2)" - >> `A $(1+2)` + >> 'A $(1+2)' = "A 3" - - >> $"A $(1+2)" - = "A 3" - >> $$"A $(1+2)" - = "A \$(1+2)" - >> $="A =(1+2)" + >> `A @(1+2)` = "A 3" - >> ${one {nested} two $(1+2)} - = "one {nested} two 3" c := "É̩" >> c.codepoint_names() |
