mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 14:34:59 +00:00
18 lines
258 B
C++
18 lines
258 B
C++
#include "other.h"
|
|
#include <stdio.h>
|
|
|
|
namespace MyNamespace {
|
|
|
|
int func()
|
|
{
|
|
int x = 1;
|
|
int y = 2;
|
|
INT_Z = 3;
|
|
StructInHeader mystruct;
|
|
printf("x: %d\n", x);
|
|
printf("y: %d\n", y);
|
|
printf("x+y: %d\n", x + y);
|
|
return x + y;
|
|
}
|
|
|
|
}
|