aboutsummaryrefslogtreecommitdiffstats
path: root/test/add.c
blob: ab0397665bf4de60288a8cf8315ea90ce31d9563 (plain)
1
2
3
4
5
6
int main () {
    int x = 1;
    int y = 2;
    int z = x + y;
    return z;
}