fsfw-from-zero/main.cpp

10 lines
130 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-10-05 10:14:23 +02:00
static uint32_t SHARED_COUNTER = 0;
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
}