7f8d6b3008
#KT-18805 Fixed
9 lines
157 B
Plaintext
Vendored
9 lines
157 B
Plaintext
Vendored
// HIGHLIGHT: INFORMATION
|
|
|
|
fun abs(x: Int): Int =// No highlighting here
|
|
if (x > 0) {
|
|
x
|
|
}
|
|
else {
|
|
-x
|
|
} |