Skip to content

Instantly share code, notes, and snippets.

@studi-c
studi-c / main.cpp
Created September 26, 2019 11:13 — forked from Jiwan/main.cpp
C++11 example 1
#include <iostream>
struct A {};
std::string to_string(const A&)
{
return "I am a A!";
}
// Type B with a serialize method.