Previous Up Next

25.2.7  Displaying exponents

The printpow command determines how the print command will print exponents in the special pane above the output line.

Examples

print(x^3):;

x^3

printpow(-1):; print(x^3):;

x**3

printpow(0):; print(x^3):;

pow(x,3)

printpow(1):; print(x^3):;

x^3


Previous Up Next