Configuration: move scratch tests to separate module
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
// PREVIEW_ENABLED: TRUE
|
||||
println("Hello world")
|
||||
|
||||
for (x in 1..1) {
|
||||
println("Hello world")
|
||||
}
|
||||
|
||||
for (x in 1..3) {
|
||||
println("Hello world")
|
||||
}
|
||||
|
||||
for (x in 1..4) {
|
||||
println("Hello world")
|
||||
}
|
||||
|
||||
println(List(3) { "Hello world" }.joinToString(separator = "\n"))
|
||||
|
||||
println(
|
||||
List(3) { "Hello world" }.joinToString(separator = "\n")
|
||||
)
|
||||
Reference in New Issue
Block a user