Skip to content

Instantly share code, notes, and snippets.

View sixprime's full-sized avatar

Andrei Pastramagiu sixprime

View GitHub Profile
@sixprime
sixprime / echo_prototype.cpp
Created February 1, 2026 07:43
echo reflection library prototype
#include "echo.hpp"
#include <iostream>
struct User {
int id;
std::string name;
std::string email;
};
int main() {