RosettaCodeData/Task/Zero-to-the-zero-power/PureBasic/zero-to-the-zero-power.purebasic
2016-12-05 22:15:40 +01:00

7 lines
192 B
Text

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