Line markers for recursive calls.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
fun f(a: Int): Int {
|
||||
if (a > 0) {
|
||||
<lineMarker>f</lineMarker>(a - 1) + f(a + 1)
|
||||
}
|
||||
|
||||
return <lineMarker>f</lineMarker>(a)
|
||||
}
|
||||
Reference in New Issue
Block a user