Newer
Older
minerva / Base / home / anon / Source / little / other.cpp
@minerva minerva on 13 Jul 258 bytes Initial commit
#include "other.h"
#include <stdio.h>

namespace MyNamespace {

int func()
{
    int x = 1;
    int y = 2;
    INT_Z = 3;
    StructInHeader mystruct;
    printf("x: %d\n", x);
    printf("y: %d\n", y);
    printf("x+y: %d\n", x + y);
    return x + y;
}

}