Open dolmen opened 6 years ago
The following code:
var x = 3; x = ~x;
must be translated to Go as:
x := 3; x = ^x; // Not ~x
See https://play.golang.org/p/CbJQ-gPguyG
The following code:
must be translated to Go as:
See https://play.golang.org/p/CbJQ-gPguyG