mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-13 23:33:33 +01:00
10 lines
111 B
C++
10 lines
111 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
cout << "Hello FI MUNI!" << endl;
|
|
return 0;
|
|
}
|
|
|