2015-12-26 01:52:29 +00:00
|
|
|
|
2016-01-10 18:26:31 -05:00
|
|
|
fun simple_print(to_print: *char) {
|
|
|
|
|
__if_comp__ __C__ simple_passthrough(to_print::) """
|
|
|
|
|
printf("%s", to_print);
|
|
|
|
|
"""
|
|
|
|
|
}
|
2016-01-13 21:09:28 -05:00
|
|
|
fun simple_print(to_print: int) {
|
|
|
|
|
__if_comp__ __C__ simple_passthrough(to_print::) """
|
|
|
|
|
printf("%d", to_print);
|
|
|
|
|
"""
|
|
|
|
|
}
|
2015-12-26 01:52:29 +00:00
|
|
|
var a = 1
|
2015-12-28 03:34:40 -05:00
|
|
|
var b = 2
|
2015-12-26 01:52:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|