8 lines
110 B
Julia
8 lines
110 B
Julia
using Base.Test
|
|
|
|
include("hello-world.jl")
|
|
|
|
@testset "Say Hi!" begin
|
|
@test hello() == "Hello, World!"
|
|
end
|