We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a514f6c commit ee07e52Copy full SHA for ee07e52
config.json
@@ -8,8 +8,7 @@
8
"slug": "hello-world",
9
"difficulty": 1,
10
"topics": [
11
- "strings",
12
- "string interpolation"
+ "strings"
13
]
14
},
15
{
exercises/hello-world/example.jl
@@ -1,3 +1,3 @@
1
-function hello(name::AbstractString="World")
2
- return "Hello, $(name)!"
+function hello()
+ return "Hello, World!"
3
end
exercises/hello-world/runtests.jl
@@ -2,11 +2,6 @@ using Base.Test
include("hello-world.jl")
4
5
-@testset "no name" begin
+@testset "Say Hi!" begin
6
@test hello() == "Hello, World!"
7
-
-@testset "names" begin
- @test hello("Alice") == "Hello, Alice!"
- @test hello("Bob") == "Hello, Bob!"
-end
0 commit comments