Skip to content

Commit

Permalink
Initial Setup of Package before Registering
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabisanth11 committed Oct 11, 2023
1 parent 9a26601 commit b9fa3a5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/MaximumAreaCoverageOptimization.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module MaximumAreaCoverageOptimization

# Write your package code here.
export greet_my_package
include("functions.jl")

end
end
3 changes: 3 additions & 0 deletions src/functions.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
function greet_my_package()
println("Hello!")
end
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ using MaximumAreaCoverageOptimization
using Test

@testset "MaximumAreaCoverageOptimization.jl" begin
# Write your tests here.
@test MaximumAreaCoverageOptimization.greet_my_package() != "Hello world!"
end

0 comments on commit b9fa3a5

Please sign in to comment.