Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -1,5 +1,17 @@
print_all: procedure /* [↓] is the # of args passed.*/
do j=1 for arg()
say arg(j)
end /*j*/
-- 11 Sep 2025
include Setting
say 'VARIADIC FUNCTION'
say version
say
call Task 'Sin(x)',,0,Abs(-12),SqRt(12)/1,,'Number 7',,2**10
exit
Task:
procedure
do a = 1 to Arg()
say 'Arg('a')' '=' Arg(a)
end
return
include Math