aboutsummaryrefslogtreecommitdiff
path: root/tests/BoxedInt.ml
blob: ad8db7c89c5bc68c57e47a8fa43b1756c9fa3034 (plain)
1
2
3
4
5
6
7
let x = Int32.of_int 1
let y = Int64.of_int 1
let z = Int64.to_int32 y |> Int32.add x |> Nativeint.of_int32

let a = Int32.to_int     x
let b = Int64.to_int     y
let c = Nativeint.to_int z