Data Update
This commit is contained in:
parent
015c2add84
commit
e50b5c3114
206 changed files with 6337 additions and 523 deletions
1
Task/Hello-world-Text/YAMLScript/hello-world-text-1.ys
Normal file
1
Task/Hello-world-Text/YAMLScript/hello-world-text-1.ys
Normal file
|
|
@ -0,0 +1 @@
|
|||
(println "Hello world!")
|
||||
3
Task/Hello-world-Text/YAMLScript/hello-world-text-10.ys
Normal file
3
Task/Hello-world-Text/YAMLScript/hello-world-text-10.ys
Normal 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!"
|
||||
1
Task/Hello-world-Text/YAMLScript/hello-world-text-2.ys
Normal file
1
Task/Hello-world-Text/YAMLScript/hello-world-text-2.ys
Normal file
|
|
@ -0,0 +1 @@
|
|||
(say "Hello world!")
|
||||
1
Task/Hello-world-Text/YAMLScript/hello-world-text-3.ys
Normal file
1
Task/Hello-world-Text/YAMLScript/hello-world-text-3.ys
Normal file
|
|
@ -0,0 +1 @@
|
|||
say("Hello world!")
|
||||
1
Task/Hello-world-Text/YAMLScript/hello-world-text-4.ys
Normal file
1
Task/Hello-world-Text/YAMLScript/hello-world-text-4.ys
Normal file
|
|
@ -0,0 +1 @@
|
|||
say("Hello world!"):
|
||||
2
Task/Hello-world-Text/YAMLScript/hello-world-text-5.ys
Normal file
2
Task/Hello-world-Text/YAMLScript/hello-world-text-5.ys
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
say:
|
||||
- "Hello world!"
|
||||
1
Task/Hello-world-Text/YAMLScript/hello-world-text-6.ys
Normal file
1
Task/Hello-world-Text/YAMLScript/hello-world-text-6.ys
Normal file
|
|
@ -0,0 +1 @@
|
|||
say: ["Hello world!"]
|
||||
1
Task/Hello-world-Text/YAMLScript/hello-world-text-7.ys
Normal file
1
Task/Hello-world-Text/YAMLScript/hello-world-text-7.ys
Normal file
|
|
@ -0,0 +1 @@
|
|||
say: "Hello world!"
|
||||
1
Task/Hello-world-Text/YAMLScript/hello-world-text-8.ys
Normal file
1
Task/Hello-world-Text/YAMLScript/hello-world-text-8.ys
Normal file
|
|
@ -0,0 +1 @@
|
|||
say("Hello"): "world!"
|
||||
1
Task/Hello-world-Text/YAMLScript/hello-world-text-9.ys
Normal file
1
Task/Hello-world-Text/YAMLScript/hello-world-text-9.ys
Normal file
|
|
@ -0,0 +1 @@
|
|||
say: ["Hello", "world!"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue