5 lines
97 B
Text
5 lines
97 B
Text
fn get() -> string:
|
|
add("hello", "world")
|
|
|
|
fn add(a: string, b: string) -> string:
|
|
a + b
|