Data update

This commit is contained in:
Ingy döt Net 2024-11-04 20:28:54 -08:00
parent 52a6ef48dd
commit 157b70a810
604 changed files with 14253 additions and 2100 deletions

View file

@ -1 +1 @@
jq -n '1 as $a | 2 as $b | $a as $tmp | $b as $a | $tmp as $b | [$a,$b]'
{a: 1, b: 2} | {a: .b, b: a.}

View file

@ -0,0 +1 @@
jq -n '1 as $a | 2 as $b | $a as $tmp | $b as $a | $tmp as $b | [$a,$b]'

View file

@ -0,0 +1,19 @@
dim a(10) as byte
a(3)=2
a(4)=100
Print a()
swap a(3), a(4)
Print a()
try ok {
a(0)=-1
}
if not ok then print error$ =" Overflow Byte"
try ok {
a(0)=256
}
if not ok then print error$ =" Overflow Byte"
a()=a()#rev()
Print a()
Print type$(a(3))
Print a(10-3-1)=100
Print a(10-4-1)=2