Skip to content

Commit 06ec330

Browse files
committed
Tweak
1 parent 33d00bb commit 06ec330

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

julia/Euler/src/Euler.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ module Euler
55
include.(filter(contains(r".jl$"), readdir(joinpath(@__DIR__, "lib"), join=true)))
66

77
# read solutions
8-
for bin_dir in filter(x -> match(r"bin.*", x) !== nothing,readdir(@__DIR__))
8+
for bin_dir in filter(x -> match(r"bin.*", x) !== nothing, readdir(@__DIR__))
99
include.(filter(contains(r".jl$"), readdir(joinpath(@__DIR__, bin_dir), join=true)))
1010
end
1111

12+
1213
end # module Euler

0 commit comments

Comments
 (0)