Zero to the zero power: Difference between revisions

Line 692:
=={{header|PowerShell}}==
<lang PowerShell>[math]::pow(0,0)</lang>
 
=={{header|PureBasic}}==
<lang PureBasic>
If OpenConsole()
PrintN("Zero to the zero power is " + Pow(0,0))
PrintN("")
PrintN("Press any key to close the console")
Repeat: Delay(10) : Until Inkey() <> ""
CloseConsole()
EndIf
</lang>
 
{{out}}
<pre>
Zero to the zero power is 1
</pre>
 
=={{header|Python}}==
9,492

edits