paladin-t / my_basic

A lightweight BASIC interpreter written in standard C in dual files. Aims to be embeddable, extendable and portable.
http://paladin-t.github.io/my_basic/
MIT License
507 stars 118 forks source link

Add real/float symbol to distinguish between Integer #70

Open blazer2k1 opened 1 year ago

blazer2k1 commented 1 year ago

It would be nice to add a float symbol like # to distinguish between integer and real/float for clarity, make the source more readable and better track down between these 2 variable types.

..or I see that there are only 2 variable types in my_basic, numbers (int/real) and strings?