mirror of
https://github.com/lrenaud/sheclang.git
synced 2025-06-15 20:00:10 -07:00
9 lines
125 B
C++
Executable file
9 lines
125 B
C++
Executable file
#!/usr/bin/env -S sheclang
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
printf("Hello World!\n");
|
|
|
|
return 0;
|
|
}
|