Files
kraken/tests/test_emptyBracesFunction.krak
2015-05-09 06:24:56 -04:00

10 lines
120 B
Plaintext

import io;
fun nothing(): void {}
fun main(): int {
nothing();
io::println("It was nothing");
return 0;
}