# hexcalc test script - test the commands, built-in functions, and both
# silent and echoing comments

help			## help
HELP			## HELP
a=1000			# init a
b=8888			# init b
a+b			## hex default: a + b (9888)
OCT(DEC(a+b))		## 39048 114210  9888
dec
a+b			## dec default: a + b (39048)
OCT(HEX(a+b))		## 9888  114210  39048
oct
a+b			## oct default: a + b (114210)
DEC(HEX(a+b))		## 9888  39048	114210
quit			## quitting
