Long multiplication: Difference between revisions

Content added Content deleted
(delete Common Lisp, Clojure examples not performing *explicit* long multiplication)
(add lisp)
Line 649: Line 649:
}
}


</lang>
=={{header|Mathematica}}==
Common Lisp does long (bignum) arithmatic by default, so this is easy:
<lang lisp>
(* (expt 2 64) (expt 2 64))
</lang>
</lang>