Ethiopian multiplication: Difference between revisions

Content added Content deleted
(→‎{{header|VBScript}}: Change sub-headings to bold as this shortens table of contents.)
Line 2,323: Line 2,323:
<code>option explicit</code> makes sure that all variables are declared.
<code>option explicit</code> makes sure that all variables are declared.
=====Implementation=====
'''Implementation'''
<lang vb>
<lang vb>
option explicit
option explicit
Line 2,416: Line 2,416:
</lang>
</lang>


=====Invocation=====
'''Invocation'''
<lang vb>
<lang vb>
wscript.echo multiply(17,34)
wscript.echo multiply(17,34)
</lang>
</lang>


=====Output=====
'''Output'''
<lang vb>
<lang vb>
578
578