I think the confusion is that Julio assumes Int is used for brevity, when it is actually used for cross-platform compability.
-- John On Jul 29, 2014, at 3:29 PM, Stefan Karpinski <[email protected]> wrote: > Float would always be Float64. > >> On Jul 29, 2014, at 6:25 PM, Júlio Hoffimann <[email protected]> >> wrote: >> >> I'm following the analogy for Int: >> >> if is(Int,Int64) >> typealias Float Float64 >> else >> typealias Float Float32 >> end >> >> User code would be cleaner: >> >> function foo(a::Float, b::Float) >> end >> >> vs. >> >> function bar(a::Float64, b::Float64) >> end >> >> Júlio.
