typst/tests/lang/typ/call-value.typ
2021-02-17 21:30:20 +01:00

15 lines
256 B
Typst

// Test function calls.
// Ref: false
---
// Whitespace is insignificant.
#test(type(1), "integer")
#test (type (1), "integer")
// From variable.
#let alias = type
#test(alias(alias), "function")
// Returns template.
#test(type(font(12pt)), "template")