``` operator fun Int?.plus(o: Int) = if (this ...
# announcements
w
Copy code
operator fun Int?.plus(o: Int)
    = if (this == null) o else this + o