Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
SAY multiply(5, 6)
|
||||
EXIT
|
||||
multiply:
|
||||
PROCEDURE
|
||||
PARSE ARG x, y
|
||||
RETURN x*y
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
say multiply(5, 6)
|
||||
::routine multiply
|
||||
use arg x, y
|
||||
return x *y
|
||||
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue