September Morn Update

This commit is contained in:
Ingy döt Net 2019-09-12 10:33:56 -07:00
parent 4e2d22a71d
commit aac6731f2c
6856 changed files with 141342 additions and 21127 deletions

View file

@ -0,0 +1 @@
CHAR: a

View file

@ -0,0 +1,7 @@
USE: multiline
STRING: random-stuff
ABC
123
"x y z
;
random-stuff print

View file

@ -0,0 +1,15 @@
USING: interpolate locals namespaces ;
"Sally" "name" set
"bicycle"
"home"
[let
"crying" :> a
[I ${name} crashed her ${1}. Her ${1} broke.
${name} ran ${} ${a}.
I]
]

View file

@ -0,0 +1,5 @@
CHAR: x ! 120
CHAR: \u000032 ! 50
CHAR: \u{exclamation-mark} ! 33
CHAR: exclamation-mark ! 33
CHAR: ugaritic-letter-samka ! 66450

View file

@ -0,0 +1 @@
"Hello, world!"

View file

@ -0,0 +1 @@
"Hello, world!" { } like ! { 72 101 108 108 111 44 32 119 111 114 108 100 33 }

View file

@ -0,0 +1 @@
"Line one\nLine two" print

View file

@ -0,0 +1 @@
"\"Hello,\" she said." print

View file

@ -0,0 +1,3 @@
"2\u{superscript-two} = 4
2\u{superscript-three} = 8
2\u{superscript-four} = 16" print

View file

@ -0,0 +1,4 @@
USE: multiline
[[ escape codes \t are literal \\ in here
but newlines \u{plus-minus-sign} are still
inserted " for each line the string \" spans.]] print

View file

@ -0,0 +1,8 @@
USE: multiline
HEREDOC: END
Everything between the line above
and the final line (a user-defined token)
is parsed into a string where whitespace
is significant.
END
print