Files
kraken/tests/test_emptyBracesFunction.krak

10 lines
140 B
Plaintext

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