c-compiler/test.c
2024-11-18 21:53:27 +13:00

7 lines
106 B
C

generic T;
int add(T value) {
printf("%v\n", value);
return 0;
}
int result = add<char*>("bob");