SeedV / SeedLang

An embeddable and visualizable scripting engine for .Net and Unity.
https://seedv.github.io/SeedLang/
Apache License 2.0
9 stars 1 forks source link

python and SeedPython handles integer numbers differently #219

Open wixette opened 2 years ago

wixette commented 2 years ago

Python3:

>>> 234234*2934294892893289894*23848342948928943
16391243463643364462369571452108482305828

SeedPython:

>>> 234234*2934294892893289894*23848342948928943
1.6391243463643365E+40

We might not want to support big integers as Python does. If not, we need to document it in the DIFF doc.