forked_repository_to_fork/hello_world.c

10 lines
103 B
C
Raw Normal View History

2020-11-25 23:30:31 +01:00
#include <iostream>
using namespace std;
int main() {
cout << "hello world!" << endl;
return 0;
}