mirror of
https://github.com/typst/typst
synced 2025-05-16 01:55:28 +08:00
25 lines
181 B
XML
25 lines
181 B
XML
// Test newline continuations.
|
|
|
|
---
|
|
#{
|
|
"hello"
|
|
.clusters()
|
|
if false {
|
|
|
|
}
|
|
else {
|
|
("1", "2")
|
|
}
|
|
}
|
|
|
|
---
|
|
#"hello"
|
|
.codepoints()
|
|
|
|
#if false {
|
|
|
|
}
|
|
else {
|
|
("1", "2")
|
|
}
|