gopher-lua icon indicating copy to clipboard operation
gopher-lua copied to clipboard

Error from parsing from LString to LNumber

Open longquan0104 opened this issue 1 year ago • 0 comments

You must post issues only here. Questions, ideas must be posted in discussions.

  • [x] GopherLua is a Lua5.1 implementation. You should be familiar with Lua programming language. Have you read Lua 5.1 reference manual carefully?
  • [x] GopherLua is a Lua5.1 implementation. In Lua, to keep it simple, it is more important to remove functionalities rather than to add functionalities unlike other languages . If you are going to introduce some new cool functionalities into the GopherLua code base and the functionalities can be implemented by existing APIs, It should be implemented as a library.

Please answer the following before submitting your issue:

  1. What version of GopherLua are you using? : v1.1.1
  2. What version of Go are you using? : v1.22
  3. What operating system and processor architecture are you using? : Linux/x86
  4. What did you do? : tonumber("5e-07")
  5. What did you expect to see? : 0.0000005
  6. What did you see instead? : LNil

I got this error when try to run tonumber("5e-07")

longquan0104 avatar Jun 02 '24 16:06 longquan0104