package drills.drill01.exercise4 import util.rmi.Server fun main() { Server { val math: Math = MathImpl() Server.bind(math, "math") }.start() }