Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,5 @@
c_thingy_=: 3
d=: <'test'
e__d=: 4
b + e_test_
6

View file

@ -0,0 +1,8 @@
verb define ''
f=. 6
g=: 7
g=. 8
g=: 9
)
|domain error
| g =:9

View file

@ -0,0 +1,20 @@
example=:3 :0
if. y do.
echo 0
goto_a.
echo 1
else.
echo 2
goto_a.
echo 3
end.
echo 4
label_a.
echo 5
)
example 1
0
5
example 0
2
5