Started working on compound library

This commit is contained in:
2023-01-29 07:15:32 +00:00
parent aeda0a0d94
commit 2c5e3c6aa5
4 changed files with 179 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
import compound;
//test toLower
{
assert "Hello World".toLower() == "hello world", "toLower() failed";
}
//test toUpper
{
assert "Hello World".toUpper() == "HELLO WORLD", "toUpper() failed";
}
print "All good";