Skiylia-Lang / Verboscript

A toy programming language made in python; designed to be close to written english
GNU General Public License v3.0
2 stars 0 forks source link

Numbers #8

Open SK1Y101 opened 3 years ago

SK1Y101 commented 3 years ago

numbers can be represented by their symbols, or their literal spelling:

6, six, 7.9, seven point nine

Do we allow mixing of symbol and literal?

13 point 9

Does this language utilise fractional parts?

ie: can 8.12 be represented as eight and twelve hundreths, or only 8 point one two?

(Standard english disregards eight point twelve as bad form`)

What about raw fractions?

seven halves, 9 over 6, eight on thirteen

SK1Y101 commented 3 years ago

Do we have native support for binary and other base systems?

ie: six in binary (0b110)

The hexidecimal A6E2 (42542)