daeisbae / AParser

Yet another programming language for educational purpose and simplicity
https://daeisbae.github.io/AParser/
MIT License
1 stars 0 forks source link

Double value rounds to integer, which should be double. #92

Closed daeisbae closed 2 months ago

daeisbae commented 2 months ago

Problem

Double value rounds to integer, which should be double. Issue found after #90 fixed after #91

Demo

./AParser
>>> 11 + 1.3333
12
>>> 11.3333 + 1
12
daeisbae commented 2 months ago

Issue solve in #93.