mirror of
https://github.com/tstack/lnav
synced 2024-11-08 01:10:29 +00:00
12 lines
97 B
Plaintext
12 lines
97 B
Plaintext
|
/*
|
||
|
* 📂 HELLO, WORLD!
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
printf("Hello, World!\n");
|
||
|
}
|