Files
ladybird/Base/home/anon/Source/little/other.cpp
2020-08-15 15:06:35 +02:00

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