Skip to content

Instantly share code, notes, and snippets.

@fonsp
Created August 17, 2020 09:55
Show Gist options
  • Save fonsp/caef46b11c417014d0d1698b6b70607f to your computer and use it in GitHub Desktop.
Save fonsp/caef46b11c417014d0d1698b6b70607f to your computer and use it in GitHub Desktop.
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
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