Skip to content

Instantly share code, notes, and snippets.

View Sora1248's full-sized avatar

Andreas Horst Sora1248

View GitHub Profile
@Sora1248
Sora1248 / bmw.cpp
Created June 3, 2017 14:56
Working Version of BMW Karriere's strange C++ String.
// http://devhumor.com/media/quot-automobile-history-in-written-in-c-nowaday-quot
#include <iostream>
template<char... Cs>
class String {
public:
static char Function() {
const char str[] = { Cs..., 0 };
std::cout << str << std::endl;