aboutsummaryrefslogtreecommitdiff
path: root/test cases/rust/4 polyglot/prog.c
blob: 18f2c36fc5abc70528b1d5d5dff18f462878d08b (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

void f();

int main() {
    printf("Hello from C!\n");
    f();
}