nestlog: + trailing args with .end_scope()

This commit is contained in:
Roland Conybeare 2023-09-12 12:34:44 -04:00
commit 7c964ab93c
3 changed files with 16 additions and 15 deletions

View file

@ -14,7 +14,8 @@ fib(int n) {
retval = fib(n - 1) + fib(n - 2);
log(":n ", n);
}
log("<- :retval ", retval);
log.end_scope("<- :retval ", retval);
return retval;
}