SmallBASIC GuideThe language | Programming Tips | Commands | System | Graphics & Sound | Miscellaneous | File system | Mathematics | 2D Algebra | Strings | Console | Glossary |
Constants and Variables > Reals
Any number which out-bounds the limits or an 'integer' or had decimal
digits will be converted automatically to real.
x = .25
x = 1.2
Reals can be also written by using scientific notation.
1E+2 or 1E-+2, 5E--2, 2.6E-0.25, etc
[Up]