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,6 @@
SAY multiply(5, 6)
EXIT
multiply:
PROCEDURE
PARSE ARG x, y
RETURN x*y

View file

@ -0,0 +1,4 @@
say multiply(5, 6)
::routine multiply
use arg x, y
return x *y

View file

@ -0,0 +1,9 @@
say multiply(123456789,987654321)
say multiply_long(123456789,987654321)
::routine multiply
use arg x, y
return x *y
::routine multiply_long
use arg x, y
Numeric Digits (length(x)+length(y))
return x *y