Kotlin 与 Scratch 的碰撞

作者: 光剑书架上的书 | 来源:发表于2019-05-14 00:35 被阅读34次

1.创建 demo 工程:

Currently, scratches are supported only in Kotlin/JVM projects.

2.实际操作

val s = "Hello"
val t = "Kotlin"
val st = "$s$t"
println(st)

val a = 1
val b = 2
val c = a + b
println(c)

var sum = 0
for (i in 0..100)
    sum += i

println(sum)

for(i in 0..9)
    println(i)

参考文档:

https://kotlinlang.org/docs/tutorials/quick-run.html#using-scratches

相关文章

网友评论

    本文标题:Kotlin 与 Scratch 的碰撞

    本文链接:https://www.haomeiwen.com/subject/lnadaqtx.html