Rename kotlin_native -> kotlin.

This commit is contained in:
Nikolay Igotti
2016-11-01 15:49:28 +03:00
committed by Nikolay Igotti
parent 7eeb2d3046
commit 283303210f
12 changed files with 24 additions and 25 deletions
+1 -2
View File
@@ -99,14 +99,13 @@ task sum_3const(type: KonanTest) {
source = "codegen/function/sum_3const.kt"
}
/* TODO: enable, once kotlin.String -> kotlin_native.String is mapped.
task hello0(type: KonanTest) {
source = "runtime/basic/hello0.kt"
}
task hello1(type: KonanTest) {
source = "runtime/basic/hello1.kt"
} */
}
// TODO: waiting for boolean to be implemented
//task bool_yes(type: KonanTest) {
+1 -1
View File
@@ -1,4 +1,4 @@
// TODO: remove kotlin_native.io once overrides are in place.
fun main(args : Array<String>) {
kotlin_native.io.print("Hello, world!")
kotlin.io.print("Hello, world!")
}
+1 -1
View File
@@ -1,4 +1,4 @@
// TODO: remove kotlin_native.io once overrides are in place.
fun main(args : Array<String>) {
kotlin_native.io.print(kotlin_native.io.readLine())
kotlin.io.print(kotlin.io.readLine())
}