c-compiler/test.c

8 lines
106 B
C
Raw Normal View History

2024-11-18 21:53:27 +13:00
generic T;
int add(T value) {
printf("%v\n", value);
return 0;
}
int result = add<char*>("bob");