2016-02-05 13:56:29 -05:00
|
|
|
import simple_print;
|
2014-06-28 08:31:33 -07:00
|
|
|
|
2015-05-09 06:24:56 -04:00
|
|
|
fun nothing(): void {}
|
2014-06-28 08:31:33 -07:00
|
|
|
|
2015-05-09 06:24:56 -04:00
|
|
|
fun main(): int {
|
2014-06-28 08:31:33 -07:00
|
|
|
nothing();
|
2016-02-05 13:56:29 -05:00
|
|
|
simple_print::println("It was nothing");
|
2014-06-28 08:31:33 -07:00
|
|
|
return 0;
|
|
|
|
|
}
|