Long multiplication: Difference between revisions

Content added Content deleted
Line 3,783: Line 3,783:
=={{header|EasyLang}}==
=={{header|EasyLang}}==
<syntaxhighlight lang="easylang">
<syntaxhighlight lang="easylang">
proc mult a$ b$ . r$ .
func$ mult a$ b$ .
a[] = number strchars a$
a[] = number strchars a$
b[] = number strchars b$
b[] = number strchars b$
Line 3,802: Line 3,802:
.
.
.
.
return r$
.
.
mult "18446744073709551616" "18446744073709551616" r$
print mult "18446744073709551616" "18446744073709551616"
print r$
</syntaxhighlight>
</syntaxhighlight>