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

8 lines
192 B
Plaintext

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