You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 is org.junit.ComparisonFailure: expected:<[Hello, World]!> but was:<[Goodbye, Mars]!>
It says the :compileKotlin task 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 returns Goodbye, Mars!
The text was updated successfully, but these errors were encountered:
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
:compileKotlin
task 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
hello()
returns""
- but it actually returnsGoodbye, Mars!
The text was updated successfully, but these errors were encountered: