mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
7 lines
76 B
C
7 lines
76 B
C
extern void foo(const char* s);
|
|
|
|
int main()
|
|
{
|
|
foo("hello");
|
|
foo("bye");
|
|
}
|