/*
 * This is a very simple test program for a function call.  The result should
 * be a value of 3 in static memory location 0.  Test the program with
 * EJayInterpreterTest.java.
 */

int i;

void main() {
    f(3);
}

int f(int x) {
    i = x;
}