7 lines
192 B
Text
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
|