thread for discussing/tracking support for stdlib
# python-contributors
p
thread for discussing/tracking support for stdlib
the simplest thing I found working already: https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.math/absolute-value.html
Copy code
import kotlin.math.absoluteValue

fun test() = (-3).absoluteValue
• tried with
substring
but getting
NameError: name 'kotlin_String' is not defined
• tried with at least creation ofa simple list like
listOf(1, 2, 3)
- getting
NameError: name 'kotlin_Any_' is not defined
I'll focus on either of them next time
🚀 1