Skip to content

Instantly share code, notes, and snippets.

View johnmarinelli's full-sized avatar

John Marinelli johnmarinelli

View GitHub Profile
using String = const char*;
constexpr char a[] = "hello";
template <String S>
struct Word {
static constexpr String value = S;
};
int main(int argc, char* args[]) {