Hi Charles,
using version 0.2.8 I tried this little code:
uses console
printl "0*0 = " 0*0 '0
printl
printl "0^2 = " 0^2 '#qNAN , expected 0
printl "pow(0,2) = " (pow(0,2)) '#qNAN , expected 0
printl "0^0 = " 0^0 '#qNAN , expected 1
printl "pow(0,0) = " (pow(0,0)) '#qNAN , expected 1
waitkey
Is there a reason, why with Oxygen the result is #qNAN for 0^x and 0^0? I expected 0 and 1, but looking up in Wikipedia this seems not to be so clear any more.
Roland