Files
kraken/tests/to_import.krak
Nathan Braswell 162cc98f30 Added for loops
2016-01-19 11:47:09 -05:00

17 lines
292 B
Plaintext

fun simple_print(to_print: *char) {
__if_comp__ __C__ simple_passthrough(to_print::) """
printf("%s", to_print);
"""
}
fun simple_print(to_print: int) {
__if_comp__ __C__ simple_passthrough(to_print::) """
printf("%d", to_print);
"""
}
var a = 1
var b:int