You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At least under OS X, there's a slight issue if you try using [some module], where the module is spelled right but capitalized incorrectly. It issues a warning when it (arguably) should issue an error.
julia>using distributions
Warning: requiring "distributions" did not define a corresponding module.
julia>Normal(0,1)
ERROR: Normal not defined
julia>using Distributions
julia>Normal(0,1)
Normal( μ=0.0 σ=1.0 )
The text was updated successfully, but these errors were encountered:
At least under OS X, there's a slight issue if you try
using [some module]
, where the module is spelled right but capitalized incorrectly. It issues a warning when it (arguably) should issue an error.The text was updated successfully, but these errors were encountered: