Skip to content

Commit 1fb6cdf

Browse files
committed
minor changes
1 parent 759b5a6 commit 1fb6cdf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/src/lecture_06/lab.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ We will be again a little getting ahead of ourselves as we are going to use quit
1414

1515
## Quick reminder of introspection tooling
1616
Let's start with the topic of code inspection, e.g. we may ask the following: What happens when Julia evaluates `[i for i in 1:10]`?
17-
- parsing
17+
#### parsing
1818
```@repl lab06_intro
1919
using InteractiveUtils #hide
2020
:([i for i in 1:10]) |> dump
2121
```
22-
- lowering
22+
#### lowering
2323
```@repl lab06_intro
2424
Meta.@lower debuginfo=:none [i for i in 1:10]
2525
```
26-
- typing
26+
#### typing
2727
```@repl lab06_intro
2828
f() = [i for i in 1:10]
2929
@code_typed debuginfo=:none f()
3030
```
31-
- LLVM code generation
31+
#### LLVM code generation
3232
```@repl lab06_intro
3333
@code_llvm debuginfo=:none f()
3434
```
35-
- native code generation
35+
#### native code generation
3636
```@repl lab06_intro
3737
@code_native debuginfo=:none f()
3838
```

0 commit comments

Comments
 (0)