mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
9 lines
203 B
Typst
9 lines
203 B
Typst
// Test string functions.
|
|
// Ref: false
|
|
|
|
---
|
|
#let memes = "ArE mEmEs gReAt?";
|
|
#test(lower(memes), "are memes great?")
|
|
#test(upper(memes), "ARE MEMES GREAT?")
|
|
#test(upper("Ελλάδα"), "ΕΛΛΆΔΑ")
|