String concatination.
This commit is contained in:
parent
01fa5dfdb7
commit
ef77378ab4
2 changed files with 60 additions and 6 deletions
34
examples/strings_test.fun
Executable file
34
examples/strings_test.fun
Executable file
|
|
@ -0,0 +1,34 @@
|
|||
#!/usr/bin/env fun
|
||||
// Strings test: concatenation with variables and literals, functions returning strings
|
||||
|
||||
print("=== strings test start ===")
|
||||
|
||||
string a = "Hello"
|
||||
string b = "World"
|
||||
string sep = ", "
|
||||
string excl = "!"
|
||||
|
||||
// Basic concatenations
|
||||
print(a + sep + b + excl) // expect: Hello, World!
|
||||
print("Hi" + " " + "there") // expect: Hi there
|
||||
|
||||
// Empty strings
|
||||
string empty = ""
|
||||
print(empty + "x") // expect: x
|
||||
print("x" + empty) // expect: x
|
||||
|
||||
// Function returning concatenated string
|
||||
fun greet(name)
|
||||
return "Hello, " + name
|
||||
|
||||
print(greet("Fun")) // expect: Hello, Fun
|
||||
|
||||
// Using a variable prefix with a function result
|
||||
string prefix = "Hi, "
|
||||
print(prefix + greet("You")) // expect: Hi, Hello, You
|
||||
|
||||
// Non-empty check (string comparison)
|
||||
if (a != "")
|
||||
print("a is non-empty")
|
||||
|
||||
print("=== strings test end ===")
|
||||
Loading…
Add table
Add a link
Reference in a new issue