blob: 78630e8bfd414b981a959edd3ae66102646c5754 (
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
|
#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)
{
#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();
}
|