packages feed

typst-0.1.0.0: test/typ/compiler/closure-01.typ

// Basic closure without captures.
#{
  let adder = (x, y) => x + y
  test(adder(2, 3), 5)
}