2021-02-20 23:34:33 +01:00

12 lines
161 B
Typst

// Test let bindings.
// Ref: false
---
// Automatically initialized with none.
#let x
#test(x, none)
// Manually initialized with one.
#let x = 1
#test(x, 1)