Files
kraken/tests/c_passthrough_diff.krak
2015-05-09 06:24:56 -04:00

18 lines
336 B
Plaintext

__if_comp__ __C__ simple_passthrough """
#include <stdio.h>
int diff = 7;
"""
fun print_it(): void {
__if_comp__ __C__ simple_passthrough """
printf("diff_file: %d\n", diff);
"""
}
fun print_it(i: int): void {
__if_comp__ __C__ simple_passthrough(i = i::) """
printf("diff_file: %d\n", i);
"""
}