Initial commit

This commit is contained in:
JoseluCross
2017-09-17 18:28:06 +02:00
commit 92dd9181cf
14 changed files with 2021 additions and 0 deletions

16
langs/kotlin/basic.json Normal file
View File

@@ -0,0 +1,16 @@
{
"array": [
"var arr = arrayOf(1, 2, 3)",
"println(arr[0])"
],
"constant": [
"val a: Int",
"// It cannot be do",
"val b = 6"
],
"variable": [
"var a: Int",
"a = 5",
"var b = 6"
]
}