toomanyeduardos
04/16/2019, 4:24 AMgildor
04/16/2019, 4:56 AMolonho
04/16/2019, 6:06 AMcat hello.kt
fun main() = println("Hello")
konanc hello.kt -o h-linux -target linux
ls -lh h-linux.kexe
-rwxr-xr-x 1 nike staff 475K 16 апр 08:48 h-linux.kexe
strip h-linux.kexe
ls -lh h-linux.kexe
-rwxr-xr-x 1 nike staff 316K 16 апр 08:48 h-linux.kexe
konanc hello.kt -o h-mac -target macos_x64
ls -lh h-mac.kexe
-rwxr-xr-x 1 nike staff 727K 16 апр 08:58 h-mac.kexe
strip h-mac.kexe
ls -lh h-mac.kexe
-rwxr-xr-x 1 nike staff 471K 16 апр 08:58 h-mac.kexe
konanc hello.kt -o h-ios -target ios_arm64
ls -lh h-ios.kexe
-rwxr-xr-x 1 nike staff 752K 16 апр 08:59 h-ios.kexe
strip h-ios.kexe
ls -lh h-ios.kexe
-rwxr-xr-x 1 nike staff 495K 16 апр 09:00 h-ios.kexe
olonho
04/16/2019, 6:11 AMtoomanyeduardos
04/16/2019, 10:24 PM