Line markers for recursive calls.

This commit is contained in:
Evgeny Gerashchenko
2015-04-02 01:46:45 +03:00
parent 06c05193a6
commit 6041d566d9
16 changed files with 285 additions and 0 deletions
@@ -0,0 +1,7 @@
fun outer(a: Int) {
fun local(a: Int) {
if (a > 0) {
outer(a - 1)
}
}
}