Fix colon

This commit is contained in:
David Doblas Jiménez 2021-06-15 19:35:42 +02:00
parent e1456a2f8f
commit b7392266cf

View File

@ -21,7 +21,7 @@ def create_problem():
https://projecteuler.net/problem={args['problem']}
=#
function Problem{args['problem']}():
function Problem{args['problem']}()
#=
Statement
=#
@ -33,7 +33,7 @@ def create_problem():
println("Time to evaluate Problem {args['problem']}:")
@time Problem{args['problem']}()
println("")
println("Result for Problem {args['problem']}: ", problem{args['problem']}())
println("Result for Problem {args['problem']}: ", Problem{args['problem']}())
''')
f.write(template)