[ create a new paste ] login | about

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

C++, pasted on Oct 18:
1
2
3
4
5
6
7
8
#include <iostream>

enum status { win, lost, contn };

int main()
{
    std::cout << int(win) << '\n' << int(lost) << '\n' << int(contn);
}


Output:
1
2
3
0
1
2


Create a new paste based on this one


Comments: