StatProfilerHTML.jl report
Generated on Sat, 31 Dec 2022 00:00:00
File source code
Line Exclusive Inclusive Code
1 #=
2 A comment filling up
3 a few lines
4 until we reach
5 line number
6 8
7 =#
8 1 (50 %) 1 (50 %)
1 (50 %) samples spent in helper_function
1 (100 %) (ex.), 1 (100 %) (incl.) when called from main_function line 15
function helper_function()
9 return true
10 end
11
12 #=
13 Another comment
14 =#
15 1 (50 %) 2 (100 %)
1 (100 %) samples spent calling helper_function
function main_function()
16 return helper_function()
17 end