mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
12 lines
171 B
Typst
12 lines
171 B
Typst
// Test value of let binding.
|
|
// Ref: false
|
|
|
|
---
|
|
// Automatically initialized with none.
|
|
#let x
|
|
#[test x, none]
|
|
|
|
// Manually initialized with one.
|
|
#let x = 1
|
|
#[test x, 1]
|