Feat: Add string concatenation feature and example

This commit is contained in:
Alvin
2025-09-10 13:31:19 +02:00
parent ece52e4db4
commit ab29612ca8
2 changed files with 151 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
// string_manipulation.tralla
// This example demonstrates string concatenation.
let greeting = "Hello";
let name = "World";
Unire Corde full_greeting greeting name;
print("Concatenated string:", full_greeting); // Expected: Concatenated string: HelloWorld
Unire Corde message "This is a " "test.";
print("Another concatenated string:", message); // Expected: Another concatenated string: This is a test.
let space = " ";
Unire Corde spaced_greeting greeting space;
Unire Corde final_greeting spaced_greeting name;
print("Concatenated with space:", final_greeting); // Expected: Concatenated with space: Hello World