header class Printer { fun print(message: String) } fun main(args: Array) { val printer = Printer() printer.print("Hello, world!") }