just tried the math example and now I get: ``` Cli...
# kotlin-native
c
just tried the math example and now I get:
Copy code
Cliftons-Office-Mac-Pro:kotexperiment clifton$ vi sin.kt
Cliftons-Office-Mac-Pro:kotexperiment clifton$ kotlinc sin.kt -l math -o mysin
KtFile: sin.kt
sin.kt:3:13: error: unresolved reference: sin
    println(sin(2.0))
            ^
Cliftons-Office-Mac-Pro:kotexperiment clifton$ cat sin.kt
import libc.math.*
fun main(args: Array<String>) {
    println(sin(2.0))
}