String tests

This commit is contained in:
Bruce Hill 2024-03-03 17:30:31 -05:00
parent 9512eb74d2
commit 0c51ca73e0

7
test/strings.tm Normal file
View File

@ -0,0 +1,7 @@
>> str := "Hello Amélie!"
>> str:upper()
= "HELLO AMÉLIE!"
>> str:lower()
= "hello amélie!"
>> str:lower():title()
= "Hello Amélie!"