/*
 * This is the simplest possible executable program.  The result should be a
 * value of 10 in location 0 of static memory.
 */

int i;

void main() {
    i = 10;
}