blob: 034a8ef643286ee79ecc483649e58a01cc9f0dba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#if 0
#include <fstream>
#include <iostream>
#endif
int return123(void) {
return 123;
}
int retret(int s, int w) {
return s + w;
}
#define loco 1
#define puta int
namespace devi
{
class LOCO
{
public:
LOCO () {}
void lupo (void)
{
int a = 1;
int b = 2;
int c = 3;
}
};
}
int main(int argc, const char **argv)
{
/***hya**/
/*
*
* */
// /**/
int bubba; // this one
int hubba; /*
*
*/
/* "//" \\ \\\\ // */
//std::cout << "//" << "/**/" << "\n";
int/***/ cucu;
#if 0
std::ofstream myfile;
myfile.open("./touch");
myfile << "line one.\n";
myfile.close();
#endif
int aa = 100;
int bb = 28;
return retret(aa, bb);
//return return123();
}
|