Ethiopian multiplication: Difference between revisions

→‎{{header|VBScript}}: Change sub-headings to bold as this shortens table of contents.
(→‎{{header|VBScript}}: Change sub-headings to bold as this shortens table of contents.)
Line 2,323:
<code>option explicit</code> makes sure that all variables are declared.
====='''Implementation====='''
<lang vb>
option explicit
Line 2,416:
</lang>
 
====='''Invocation====='''
<lang vb>
wscript.echo multiply(17,34)
</lang>
 
====='''Output====='''
<lang vb>
578
Anonymous user