Files
kraken/tests/test_emptyBracesFunction.krak

10 lines
114 B
Plaintext
Raw Normal View History

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