Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
2
Task/Variables/Rye/variables-1.rye
Normal file
2
Task/Variables/Rye/variables-1.rye
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
str: "Hello World"
|
||||
num: 33
|
||||
2
Task/Variables/Rye/variables-2.rye
Normal file
2
Task/Variables/Rye/variables-2.rye
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
var 's "Hello world"
|
||||
s:: "Goodbye world"
|
||||
1
Task/Variables/Rye/variables-3.rye
Normal file
1
Task/Variables/Rye/variables-3.rye
Normal file
|
|
@ -0,0 +1 @@
|
|||
data: { 1 2 3 4 5 }
|
||||
1
Task/Variables/Rye/variables-4.rye
Normal file
1
Task/Variables/Rye/variables-4.rye
Normal file
|
|
@ -0,0 +1 @@
|
|||
d: list { "a" "b" "c" }
|
||||
1
Task/Variables/Rye/variables-5.rye
Normal file
1
Task/Variables/Rye/variables-5.rye
Normal file
|
|
@ -0,0 +1 @@
|
|||
x: dict { "a" 1 "b" 2 "c" 3 }
|
||||
1
Task/Variables/Rye/variables-6.rye
Normal file
1
Task/Variables/Rye/variables-6.rye
Normal file
|
|
@ -0,0 +1 @@
|
|||
t: table { "a" } { 1 2 }
|
||||
7
Task/Variables/Rye/variables-7.rye
Normal file
7
Task/Variables/Rye/variables-7.rye
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
var 'name "EU"
|
||||
country: context {
|
||||
change-name!: fn { n } { .change! 'name }
|
||||
}
|
||||
|
||||
; country/name:: "X" - doesn't exist
|
||||
country/change-name! "France" ; OK
|
||||
Loading…
Add table
Add a link
Reference in a new issue