WIP
This commit is contained in:
19
tmp/main.cpp
Normal file
19
tmp/main.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include <stdint.h>
|
||||
#include <unistd.h>
|
||||
|
||||
namespace {
|
||||
struct MyType {
|
||||
int data;
|
||||
};
|
||||
}
|
||||
|
||||
void helper_fn();
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
MyType tmp = MyType{10};
|
||||
while (tmp.data != 0) {
|
||||
helper_fn();
|
||||
tmp.data--;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user