Files
oraset/test_extensions.oas
T
2026-04-24 21:54:58 +08:00

15 lines
330 B
Plaintext

!! Test file for Oraset extensions
!include `string`
show(`Testing string module:`);
test_string = ` Hello, World! `;
show(`Original string: `, test_string);
show(`Length: `, len(test_string));
show(`To upper case: `, upper(test_string));
show(`To lower case: `, lower(test_string));
show(``);
show(`All tests completed!`);