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

8 lines
192 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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