blob: 2bf68bc336443c427f481945cac91d587c0f1737 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// Test the `upper` and `lower` functions.
--- lower-and-upper ---
#let memes = "ArE mEmEs gReAt?";
#test(lower(memes), "are memes great?")
#test(upper(memes), "ARE MEMES GREAT?")
#test(upper("Ελλάδα"), "ΕΛΛΆΔΑ")
--- upper-bad-type ---
// Error: 8-9 expected string or content, found integer
#upper(1)
|