fsfw-from-zero/main.cpp

8 lines
93 B
C++
Raw Normal View History

2022-09-02 09:07:20 +02:00
#include <iostream>
2022-09-28 19:44:30 +02:00
2022-09-02 09:07:20 +02:00
using namespace std;
int main() {
2022-09-28 19:45:54 +02:00
cout << "Hello World" << endl;
2022-09-28 14:35:09 +02:00
}