packages feed

typst-0.1.0.0: test/typ/compiler/recursion-05.typ

#let f(x) = "hello"
#let f(x) = if x != none { f(none) } else { "world" }
#test(f(1), "world")