exercism / scala

Exercism exercises in Scala.
https://exercism.org/tracks/scala
MIT License
123 stars 131 forks source link

Move example files to .meta/Example.scala #670

Closed ErikSchierboom closed 3 years ago

ErikSchierboom commented 3 years ago

Currently, the example.scala file is in the root of the exercise directory. This breaks the test runner as it is being included in the compilation and there are then two conflicting classes. This PR moves the example files to .meta/Example.scala, which fixes that and adheres to the spec.

iHiD commented 3 years ago

Nice.