2015-03-24 18:29:21 -04:00
|
|
|
|
2015-04-10 00:37:31 -04:00
|
|
|
__if_comp__ __C__ simple_passthrough """
|
2015-03-24 18:29:21 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
int diff = 7;
|
|
|
|
|
"""
|
|
|
|
|
|
2015-05-09 06:24:56 -04:00
|
|
|
fun print_it(): void {
|
2015-04-10 00:37:31 -04:00
|
|
|
__if_comp__ __C__ simple_passthrough """
|
2015-03-24 18:29:21 -04:00
|
|
|
printf("diff_file: %d\n", diff);
|
|
|
|
|
"""
|
|
|
|
|
}
|
2015-04-10 00:37:31 -04:00
|
|
|
|
2015-05-09 06:24:56 -04:00
|
|
|
fun print_it(i: int): void {
|
2015-04-10 00:37:31 -04:00
|
|
|
__if_comp__ __C__ simple_passthrough(i = i::) """
|
|
|
|
|
printf("diff_file: %d\n", i);
|
|
|
|
|
"""
|
|
|
|
|
}
|