RosettaCodeData/Task/Exponentiation-operator/ZX-Spectrum-Basic/exponentiation-operator.zx
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

4 lines
93 B
Text

10 PRINT e(3,2): REM 3 ^ 2
20 PRINT e(1.5,2.7): REM 1.5 ^ 2.7
30 STOP
9950 DEF FN e(a,b)=a^b