Data Update

This commit is contained in:
Ingy döt Net 2023-07-09 17:42:30 -04:00
parent 015c2add84
commit e50b5c3114
206 changed files with 6337 additions and 523 deletions

View file

@ -0,0 +1 @@
(println "Hello world!")

View file

@ -0,0 +1,3 @@
# The . at the start of a value is way to indicate that the value is a scalar (string).
# Without the . this would be invalid YAML(Script).
say: ."Hello", "world!"

View file

@ -0,0 +1 @@
(say "Hello world!")

View file

@ -0,0 +1 @@
say("Hello world!")

View file

@ -0,0 +1 @@
say("Hello world!"):

View file

@ -0,0 +1,2 @@
say:
- "Hello world!"

View file

@ -0,0 +1 @@
say: ["Hello world!"]

View file

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

View file

@ -0,0 +1 @@
say("Hello"): "world!"

View file

@ -0,0 +1 @@
say: ["Hello", "world!"]