kotlin
kotlin copied to clipboard
Inconsistencies in Hello World - Tutorial.md
Tutorial.md in Hello world has diverged from the code.
-
It says the test fails with
org.junit.ComparisonFailure: expected:<[Hello, World!]> but was:<[]>but actual failure isorg.junit.ComparisonFailure: expected:<[Hello, World]!> but was:<[Goodbye, Mars]!> -
It says the
:compileKotlintask should emit a warning:w: /Users/jtigger/exercism/exercises/kotlin/hello-world/src/main/kotlin/HelloWorld.kt: (1, 11): Parameter 'name' is never used
But that parameter isn't actually in the fun declaration
- It says that
hello()returns""- but it actually returnsGoodbye, Mars!