fsfw-from-zero/main.cpp

8 lines
93 B
C++
Raw Normal View History

2022-10-04 10:35:03 +02:00
#include <iostream>
2022-10-04 10:26:12 +02:00
2022-10-04 11:42:14 +02:00
using namespace std;
2022-09-02 09:07:20 +02:00
int main() {
2022-10-04 11:34:09 +02:00
cout << "Hello World" << endl;
2022-09-28 14:35:09 +02:00
}