Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
repl
/
multiline
/
multilineFunctionInvocation.repl
blob: 4140207d6ee55fbf8845c15a6495d0b55d46f16a [
file
]
>>>
fun concat
(
a
:
String
,
b
:
String
,
c
:
String
,
d
:
String
)
=
"$a$b$c$d"
>>>
concat
(
...
"hel"
,
...
"lo"
...
,
...
"wo"
+
...
"r"
,
"l"
+
...
"d"
...
)
helloworld