1
1
Fork 0
AtomicKotlinCourse/Usability/Overloading/Exercise 1/task.md

268 B

Overloading (#1)

Create a class called Dog with an overloaded bark() member function:

  • bark(n: Int) displays bark repeated n times to the console.

  • bark(n: Int, say: String) displays the contents of say repeated n times to the console.