mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 23:05:07 +00:00
12 lines
184 B
C++
12 lines
184 B
C++
#include <stdio.h>
|
|
#include "other.h"
|
|
|
|
int func()
|
|
{
|
|
int x = 1;
|
|
int y = 2;
|
|
printf("x: %d\n", x);
|
|
printf("y: %d\n", y);
|
|
printf("x+y: %d\n", x+y);
|
|
return x + y;
|
|
}
|