v / examples / call_v_from_c / test_print.c
7 lines · 6 sloc · 76 bytes · 50820105a1e7ba4c84d5a2af4f690aca59cf65cf
Raw
1extern void foo(const char* s);
2
3int main()
4{
5 foo("hello");
6 foo("bye");
7}
8