9 lines
151 B
C
9 lines
151 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
|
|
||
|
|
# include <stdio.h>
|
||
|
|
|
||
|
|
int main(int argc, char *argv[]) {
|
||
|
|
printf("Hello world!\n");
|
||
|
|
return 0;
|
||
|
|
}
|