| 123456789101112131415161718192021 |
- SuperStrict
- Framework BRL.StandardIO
- Local f1:Float = 2.5
- Local f2:Float = 43
- Print f1 * f2
- Print (f1 * f2)
- Print f1 * (f2)
- Print f1 / f2
- Print (f1 / f2)
- Print f1 / (f2)
- 'funny... 2^2 gets converted to a long?!!
- Print 2^2
- 'sqrt
- Print 4^(0.5)
- 'same like writing 1 / (2^2)
- Print 2^-2
- Print 10 mod 2
|