RosettaCodeData/Task/Zero-to-the-zero-power/PureBasic/zero-to-the-zero-power.purebasic

8 lines
192 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
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