dunham 2 days ago

How do you deal with numbers? Javascript doesn't do 64-bit numbers and naively multiplying 32-bit numbers can loose lower bits. If I remember right GWT used two numbers to represent 64-bit and ignored the 32-bit issue.

1
apignotti 1 day ago

BigInts are the current solution. There are other solutions as well.