11a3482970
#KT-38632 Fixed
9 lines
133 B
Plaintext
Vendored
9 lines
133 B
Plaintext
Vendored
// HIGHLIGHT: INFORMATION
|
|
|
|
fun abs(x: Int): Int =// No highlighting here
|
|
if (x > 0) {
|
|
x
|
|
}
|
|
else {
|
|
-x
|
|
} |