rlox playground
run code
fun hello(x) { if (x <= 0) { return; } print "hello"; return hello(x - 1); } hello(3);
This page contains webassembly and javascript content, please enable javascript in your browser.