Rename kotlin_native -> kotlin.
This commit is contained in:
committed by
Nikolay Igotti
parent
7eeb2d3046
commit
283303210f
@@ -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,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,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())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user