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,2 @@
verb noun
noun verb noun

View file

@ -0,0 +1 @@
f 1; 2; 3; 4; <5

View file

@ -0,0 +1 @@
f 1; 2; 3; 4; 5

View file

@ -0,0 +1 @@
f 'george';'tom';'howard'

View file

@ -0,0 +1 @@
1 2 3 f 'george';'tom';'howard'

View file

@ -0,0 +1,6 @@
obj=: conew'blank'
george__obj=: 1
tom__obj=: 2
howard__obj=: 3
f obj
coerase obj

View file

@ -0,0 +1 @@
f 'george';1;'tom';2;'howard';3

View file

@ -0,0 +1 @@
f ('george';1),('tom';2),:(howard';3)

View file

@ -0,0 +1 @@
f ('george';1);('tom';2);<howard';3

View file

@ -0,0 +1 @@
1 + f 2

View file

@ -0,0 +1 @@
function argumentList

View file

@ -0,0 +1 @@
sum(1,2,3)

View file

@ -0,0 +1 @@
f''

View file

@ -0,0 +1 @@
f 'one argument'

View file

@ -0,0 +1 @@
'this example has two arguments' f 'the other argument'

View file

@ -0,0 +1 @@
f 1,2,3,4,5

View file

@ -0,0 +1 @@
f (<1),(<2),(<3),(<4),(<5)

View file

@ -0,0 +1 @@
f (<1),(<2),(<3),(<4),<5