Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,2 @@
str: "Hello World"
num: 33

View file

@ -0,0 +1,2 @@
var 's "Hello world"
s:: "Goodbye world"

View file

@ -0,0 +1 @@
data: { 1 2 3 4 5 }

View file

@ -0,0 +1 @@
d: list { "a" "b" "c" }

View file

@ -0,0 +1 @@
x: dict { "a" 1 "b" 2 "c" 3 }

View file

@ -0,0 +1 @@
t: table { "a" } { 1 2 }

View 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