Created
August 17, 2020 09:55
-
-
Save fonsp/caef46b11c417014d0d1698b6b70607f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Unitful, BSON | |
ufoo = 3.0u"m/s" | |
BSON.@save "test.bson" ufoo | |
function get_ufoo() | |
BSON.@load "test.bson" ufoo | |
return ufoo | |
end | |
ubaz = get_ufoo() # This throws with "Unitful not defined" | |
@show ubaz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Something | |
using Unitful, BSON | |
ufoo = 3.0u"m/s" | |
BSON.@save "test.bson" ufoo | |
function get_ufoo() | |
BSON.@load "test.bson" ufoo | |
return ufoo | |
end | |
ubaz = get_ufoo() # This throws with "Unitful not defined" | |
@show ubaz | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment