12 lines
130 B
C
12 lines
130 B
C
/*
|
|
* Learning C with some easy code
|
|
* Hello World
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("Hello world!");
|
|
return 0;
|
|
}
|