Base: Modify "little" project

This commit is contained in:
Itamar 2020-08-15 10:58:22 +03:00 committed by Andreas Kling
parent 7eac9fe10e
commit e793cc3d13
Notes: sideshowbarker 2024-07-19 03:36:59 +09:00
5 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,12 @@
#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;
}