Support Kotlin for public beta (#1370)

This commit is contained in:
Angela P Wen 2022-11-17 10:38:48 -08:00 committed by GitHub
parent 7694d6752a
commit 4fddc51e4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 34 additions and 4 deletions

View file

@ -11,3 +11,5 @@ go build main.go
if [[ "$OSTYPE" == "darwin"* || "$OSTYPE" == "linux-gnu"* ]]; then
swift build
fi
kotlinc main.kt

View file

@ -0,0 +1,5 @@
fun main() {
if (true) {
println("Hello, World!")
}
}