Exponentiation order: Difference between revisions

No edit summary
Line 726:
 
=={{header|langur}}==
<syntaxhighlight lang="langur">writeln( " 5^3^2: ", 5^3^2)
writeln( "(5^3)^2: ", (5^3)^2
writeln( "5^(3^2): ", 5^(3^2)
</syntaxhighlight>
 
{{out}}
<pre> 5^3^2: 1953125
(5^3)^2: 15625
5^(3^2): 1953125
</pre>
 
889

edits