I have written a program that simplifies a radical, but it's kind of ugly and I am interested in "prettying" up the interface:
prgmSIMPRAD
IN?
R=?48
OUT:
4
IN:
3
DONE
Ideally I'd like something like this:
prgmSIMPRAD(48)
4(radical symbol)3
After a quick google I figured out how to beautify the answer, but I'm still curious if it is possible to put a parameter in the call to the program.