mirror of
https://github.com/ellysh/bash-programming-from-scratch.git
synced 2026-01-26 07:43:42 +00:00
7 lines
69 B
C
7 lines
69 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("Hello world!\n");
|
|
}
|