mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-02 20:01:29 +00:00
This isn't technically required in those cases (we're in a definition, not in a declaration), but let's add it for consistency.
9 lines
114 B
C
9 lines
114 B
C
/* a simple helloworld test */
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
printf("Hello world\n");
|
|
return 0;
|
|
}
|