forked_repository_to_fork/hello_world.c
2020-11-25 23:30:31 +01:00

10 lines
103 B
C

#include <iostream>
using namespace std;
int main() {
cout << "hello world!" << endl;
return 0;
}