Commit 3dfe899
authored
Update compatibility.md...
The note that there is a small difference in the use of `sprint`, `sprintf`, `ToString` to output in hexadecimal format as to the Fable version outputting a negative size and the magnitude as compared to DotNet just outputting the binary format seems to no longer be true with Fable version 4.13, as shown by the following code
```fable
let test0 = sprintf "%X" -10
let test1 = sprintf "%X" -10L
printfn "%s, %s" test0 test1
```
which outputs the following
```
FFFFFFF6, FFFFFFFFFFFFFFF6
```
without a negative sign to be seen...1 parent f2c8d6e commit 3dfe899
1 file changed
+0
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
232 | | - | |
233 | | - | |
234 | | - | |
235 | | - | |
0 commit comments