All pastes #2075869 Raw Edit

Something

public text v1 · immutable
#2075869 ·published 2011-06-07 00:52 UTC
rendered paste body
#include <iostream>
using namespace std;

int main() {
    int (*next)() = &main;
    cout << "Hello World!";
    *next();
}