Try running this code in the
lua demo page:
local x = 1432090800000
print(x + 3898092908)
It prints 1435988892908.
Now run this code in Luan:
local Io = require "luan:Io"
local x = 1432090800000
Io.print(x + 3898092908)
It prints 1.435988892908E12.
The Luan output is useless because we usually want to run other operations with the number (e.g., call javascript time functions, etc) and this format makes it hard to use.