Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
ir
/
interpreter
/
generatedStdlib
/
joinToString.kt
blob: 68ca3970663a17607678ea837d784e6abce07103 [
file
] [
log
] [
blame
]
import
kotlin
.
collections
.*
import
kotlin
.
sequences
.*
const
val a
=
<!
EVALUATED
:
`1, 2, 3`
!>
listOf
(
1
,
2
,
3
).
joinToString
()<!>
const
val b
=
<!
EVALUATED
:
`-1.-2.-3`
!>
sequenceOf
(-
1
,
-
2
,
-
3
).
joinToString
(
separator
=
"."
)<!>