import io:* obj it { fun operator+(other: U): it { println(other) return *this } } fun main():int { var i: it i + "works" return 0 }