packages feed

typst-0.1.0.0: test/typ/compiler/let-00.typ

// Automatically initialized with none.
#let x
#test(x, none)

// Manually initialized with one.
#let z = 1
#test(z, 1)

// Syntax sugar for function definitions.
#let fill = green
#let f(body) = rect(width: 2cm, fill: fill, inset: 5pt, body)
#f[Hi!]