fsfw-from-zero/start_main.cpp

10 lines
130 B
C++
Raw Normal View History

2022-10-05 11:04:27 +02:00
#include <iostream>
using namespace std;
static uint32_t SHARED_COUNTER = 0;
int main() {
cout << "Hello World" << endl;
}