From 8697d040e99e3f350083f99405fe54d2fd83a60b Mon Sep 17 00:00:00 2001
From: laurentheirendt <laurent.heirendt@uni.lu>
Date: Wed, 8 Jun 2022 09:01:15 +0200
Subject: [PATCH] change order of slides

---
 .../slides/bootstrap.md                       | 21 ++++++++++---------
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/2022/2022-06-08_JuliaForNewcomers/slides/bootstrap.md b/2022/2022-06-08_JuliaForNewcomers/slides/bootstrap.md
index c6dfb673..d4d6132a 100644
--- a/2022/2022-06-08_JuliaForNewcomers/slides/bootstrap.md
+++ b/2022/2022-06-08_JuliaForNewcomers/slides/bootstrap.md
@@ -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
 ```
 
 
-- 
GitLab