Skip to content
Snippets Groups Projects
Verified Commit 8697d040 authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

change order of slides

parent 991bed2a
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !136. Comments created here will be created in the context of that merge request.
......@@ -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
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment