curiosity-ai / h5

🚀 The next generation C# to JavaScript compiler
https://github.com/curiosity-ai/h5
Apache License 2.0
210 stars 30 forks source link

Regression: negative zero is compiled wrong #68

Closed ghost closed 1 year ago

ghost commented 1 year ago

C#

double d = -0.0;

Bridge

var d = -0.0;

H5

var d = --0.0;