f87d2d1fcc
chooser. Do not suggest parenthesized expressions #KT-9028 Fixed
10 lines
130 B
Kotlin
Vendored
10 lines
130 B
Kotlin
Vendored
fun main(args: Array<String>) {
|
|
print(Math.pow(1.<caret>0 + 1, Math.abs(-42.0)))
|
|
}
|
|
/*
|
|
1.0
|
|
1.0 + 1
|
|
Math.pow(...)
|
|
print(...)
|
|
*/
|