This is a four-function calculator, not a scientific calculator. example expressions: > 1/20,1*2,1-2,1+2 > 7*8, 90/2, 24-3, 10-9 > 373%300 (modulo)
You don't need to add spaces or other delimiting characters, but you can and they will be ignored. Current limitations: - limited operations (albeit very extensible) - only performs first operation - large decimal numbers aren't stored exactly, switching to floating point. - isn't a big deal by any means - Haven't added error checking yet. Change log: (5/11/26): I refactored the entire calculation script, and without using lists. (5/29/26): Added modulo operator (credit @msmno1fan)