Is it possible to output an expression like 2^3 as 2^3 without it being evaluated to 8? I tried '(2^3), but that does not work. Then I tried print(2^3) which just prints 8. Thanks for hints, R.G.