Skip to content

Commit

Permalink
update module
Browse files Browse the repository at this point in the history
  • Loading branch information
foldfelis committed Apr 13, 2020
1 parent 12e8731 commit 90b802d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion ChaosGame/src/ChaosGame.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
module ChaosGame

greet() = print("Hello World!")
src = [
]

for s = src
include("$(s).jl")
end

end # module

8 changes: 7 additions & 1 deletion ChaosGame/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
using ChaosGame
using Test

tests = [
]

@testset "ChaosGame.jl" begin
# Write your own tests here.
for t in tests
include("$(t).jl")
end
end

0 comments on commit 90b802d

Please sign in to comment.