1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
uni-m.cds-adv-prog/ex1.1/hello_world.cpp

8 lines
103 B
C++

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