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