Skip to content

Commit e8ce1d8

Browse files
authored
Merge pull request #409 from vil02/add_kotlin_examples
tests: add kotlin examples
2 parents 0e18b20 + d58417a commit e8ce1d8

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
fun fun0() {
2+
print('{')
3+
print('%')
4+
}
5+
6+
fun fun1() {
7+
fun0()
8+
println()
9+
fun0()
10+
}
11+
12+
fun main() {
13+
fun1()
14+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
fun fun0() {
2+
// No code needed
3+
}
4+
5+
fun fun1() {
6+
fun0()
7+
print('C')
8+
}
9+
10+
fun main() {
11+
fun1()
12+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fun main() {
2+
print('X')
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fun main() {
2+
// No code needed
3+
}

0 commit comments

Comments
 (0)