File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
1616Let'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
1919using InteractiveUtils #hide
2020:([i for i in 1:10]) |> dump
2121```
22- - lowering
22+ #### lowering
2323``` @repl lab06_intro
2424Meta.@lower debuginfo=:none [i for i in 1:10]
2525```
26- - typing
26+ #### typing
2727``` @repl lab06_intro
2828f() = [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```
You can’t perform that action at this time.
0 commit comments