Skip to content

Commit f168a9e

Browse files
committed
Add Kotlin test file and build command
1 parent ff791fd commit f168a9e

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

tests/multi-language-repo/build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ go build main.go
1111
if [[ "$OSTYPE" == "darwin"* || "$OSTYPE" == "linux-gnu"* ]]; then
1212
swift build
1313
fi
14+
15+
kotlinc main.kt

tests/multi-language-repo/main.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
fun main() {
2+
if (true) {
3+
println("Hello, World!")
4+
}
5+
}

0 commit comments

Comments
 (0)