You are viewing a single comment's thread. Return to all comments →
Scala
def f(n: Int): Unit = { if (n > 0) { println("Hello World") f(n - 1) } }
Seems like cookies are disabled on this browser, please enable them to open this website
Hello World N Times
You are viewing a single comment's thread. Return to all comments →
Scala