import simple_print; var a: int = 42; var b = "hi"; fun main(): int { simple_print::println(a); simple_print::println(b); return 0; }