Pristine Ack-5.5
[Ack-5.5.git] / lang / basic / test / test24.b
1 100 rem float arithmetic
2 110 print "1.0+3.14=" 1.0+3.14
3 115 a= 1.0+3.14: print a
4 120 print "3.19*23.6=", 3.19*23.6
5 125 b= 3.19*23.6: print b
6 220 print "3.19*(23.6+23)=", 3.19*(23.6+23)
7 225 b= 3.19*(23.6+23): print b
8 230 end