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