1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 23:05:07 +00:00
serenity/Base/home/anon/Source/little/other.cpp
2020-08-15 15:06:35 +02:00

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;
}