Cursen-Framework/main.cpp

18 lines
208 B
C++

#include <print>
#include <string>
#include <iostream>
typedef struct foo {
uint8_t test;
int one() {
return 1;
};
} foo;
int main() {
foo ok;
std::cout << std::to_string(ok.one()) << std::endl;
}