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