Skip to content
Snippets Groups Projects

minor changes

Merged Laurent Heirendt requested to merge lh-mk-juliatraining into mk-juliatraining
1 file
+ 11
10
Compare changes
  • Side-by-side
  • Inline
@@ -54,34 +54,35 @@ Julia interprets some additional keys to make our life easier:
# Loading libraries, modules and packages
- Load a local file (with shared functions etc.)
# Managing packages from the package management environment
- Install a package
```julia
include("mylibrary.jl")
] add UnicodePlots
```
- Load a package, add its exports to the global namespace
- Uninstall a package
```julia
using UnicodePlots
] remove UnicodePlots
```
# Managing packages from the package management environment
# Loading libraries, modules and packages
- Install a package
- Load a local file (with shared functions etc.)
```julia
] add UnicodePlots
include("mylibrary.jl")
```
- Uninstall a package
- Load a package, add its exports to the global namespace
```julia
] remove UnicodePlots
using UnicodePlots
```
Loading