Initial commit: Oraset programming language with documentation
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
!! 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!`);
|
||||
Reference in New Issue
Block a user