blob: 23c3f23e2d9a80bf328007db9b0a9beb0a777467 (
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
61
62
63
64
65
66
67
68
|
#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
#define PI 3.14
#define INTMAC1 int mac1
#define INTMAC2 int mac2
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;
INTMAC1;
INTMAC2;
retret(mac1, mac2);
return retret(aa, bb);
//return return123();
}
|