Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 577 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 577 Bytes

Mktd#4 Kotlin Koans

A kōan is a story, dialogue, question, or statement, which is used in Zen practice to provoke the "great doubt" and test a student's progress in Zen practice.

Complete the exercises inside the master branch. If you're stuck, you can have a look at a possible solution in the "complete" branch.

Instruction

  1. let i = 0
  2. go to ex${i} folder
  3. work in Ex${i}Task.kt
  4. test with gradle test
  5. if 💣 ➡️ 3
  6. i = i + 1
  7. if (i < 15) ➡️ 2
  8. 🎉

Tips: you can run your test in continuous mode with gradle -t test