[ create a new paste ] login | about

Link: http://codepad.org/l1YKfsZP    [ raw code | output | fork ]

C++, pasted on Sep 26:
1
2
3
4
5
6
7
8
9
10
#include <cstdio>

struct butts {
    butts() { printf("i sure hope this default constructor was trivial\n"); }
};

int main() {
    butts butt;
    return 0;
}


Output:
1
i sure hope this default constructor was trivial


Create a new paste based on this one


Comments: