Zero to the zero power: Difference between revisions

Content added Content deleted
mNo edit summary
(Add Red)
Line 1,329: Line 1,329:
Num 0 1 1
Num 0 1 1
Complex 0+0i 1+0i 1+0i
Complex 0+0i 1+0i 1+0i
</pre>

=={{header|Red}}==
Shown using the operator, the function, and the <code>math</code> mini-DSL that uses the order of operations from mathematics:
<lang rebol>Red[]
print 0 ** 0
print power 0 0
print math [0 ** 0]</lang>
{{out}}
<pre>
1
1
1
</pre>
</pre>