Data update

This commit is contained in:
Ingy dot Net 2024-04-19 16:56:29 -07:00
parent 0df55f9f24
commit aec8ed51b6
1045 changed files with 18889 additions and 2777 deletions

View file

@ -0,0 +1,14 @@
# The here-document is not here, but at the end of the program
repeat
s$ = input
until error = 1
print s$
.
input_data
This is a 'raw' string with the following properties:
- indention is preserved,
- an escape sequence such as a quotation mark "\\" is interpreted literally, and
- interpolation such as %(a) is also interpreted literally.
- """ is also interpreted literally.
`Have fun!`

View file

@ -1,4 +1,4 @@
val .s = q:block END
val .s = qs:block END
We put our text here.
Here we are, Doc.
END

View file

@ -1,4 +1,4 @@
val .re = re:block END
a regex pattern here
Still here, Doc.
val .s = qs:lead:block END
We put our text here.
Here we are, Doc.
END

View file

@ -1,4 +1,4 @@
val .re = re:x:block END
a free-spacing regex pattern here
Somewhere, Doc.
val .re = re:block END
a regex pattern here
Still here, Doc.
END

View file

@ -0,0 +1,4 @@
val .re = re:x:block END
a free-spacing regex pattern here
Somewhere, Doc.
END