Fix loading macro

This commit is contained in:
David Doblas Jiménez 2021-10-25 21:24:41 +02:00
parent 97eb619525
commit 71a1ccd2ca

View File

@ -17,6 +17,7 @@ It is possible to compute the LCM of more than two numbers by iteratively
computing the LCM of two numbers, i.e. LCM(a, b, c) = LCM(a, LCM(b, c))
=#
using BenchmarkTools
function Problem5()
#=