Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
5
Task/Long-multiplication/PicoLisp/long-multiplication.l
Normal file
5
Task/Long-multiplication/PicoLisp/long-multiplication.l
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
(de multi (A B)
|
||||
(setq A (format A) B (reverse (chop B)))
|
||||
(let Result 0
|
||||
(for (I . X) B
|
||||
(setq Result (+ Result (* (format X) A (** 10 (dec I)))))) ) )
|
||||
Loading…
Add table
Add a link
Reference in a new issue