mirror of
https://github.com/Alvin-Zilverstand/Tralalero_lang.git
synced 2026-03-06 03:06:38 +01:00
Feat: Add string concatenation feature and example
This commit is contained in:
16
examples/string_manipulation.tralla
Normal file
16
examples/string_manipulation.tralla
Normal 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
|
||||
Reference in New Issue
Block a user