duckscript/test/std/string/lowercase_test.ds
2021-07-14 12:00:25 -04:00

7 lines
100 B
Plaintext

fn test_conversion
output = lowercase "Hello World"
assert_eq ${output} "hello world"
end