17 lines
292 B
Plaintext
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 = 2
|
|
|
|
|
|
|