Keno / SIUnits.jl

Efficient unit-checked computation
Other
70 stars 26 forks source link

"show" and "print" print "false" #52

Closed jonasrauber closed 9 years ago

jonasrauber commented 9 years ago

Calling show or print with an SIQuantity or SIUnit prints "false"

julia> using SIUnits

julia> 1*Meter
1 m 

julia> show(1*Meter)
1 m false

julia> print(1*Meter)
1 m false
jonasrauber commented 9 years ago

On the master branch it's the same without the space before false.