Files
kraken/tests/to_import.krak
2016-01-24 01:02:56 -05:00

20 lines
343 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);
"""
}
fun string_id(it: *char): *char {
return it;
}
var a = 1
var b:int