diff --git a/src/Julia/create_template.py b/src/Julia/create_template.py index 50c6342..06d8c3f 100755 --- a/src/Julia/create_template.py +++ b/src/Julia/create_template.py @@ -21,6 +21,8 @@ def create_problem(): https://projecteuler.net/problem={args['problem']} =# + using BenchmarkTools + function Problem{args['problem']}() #= Statement @@ -31,7 +33,7 @@ def create_problem(): println("Time to evaluate Problem {args['problem']}:") - @time Problem{args['problem']}() + @btime Problem{args['problem']}() println("") println("Result for Problem {args['problem']}: ", Problem{args['problem']}()) ''')