packages feed

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

// Test value return from content.
#let x = 3
#let f() = [
  Hello 😀
  #return "nope"
  World
]

#test(f(), "nope")