Tweak syntax for debug prints

This commit is contained in:
Bruce Hill 2024-07-05 01:55:02 -04:00
parent 6ba91c1f64
commit e51e6f840c
2 changed files with 2 additions and 2 deletions

View File

@ -2035,7 +2035,7 @@ PARSER(parse_doctest) {
PARSER(parse_say) {
const char *start = pos;
if (!match(&pos, "!!")) return NULL;
if (!match(&pos, "|")) return NULL;
spaces(&pos);
ast_list_t *chunks = NULL;

View File

@ -1,6 +1,6 @@
func main():
>> str := "Hello Amélie!"
!! Testing strings like {str}
| Testing strings like {str}
>> str:upper()
= "HELLO AMÉLIE!"