//  File:  data1.txt - testing AssignExprs

begin
    x0 = 123;        // simple assignments
    x1 = one;
    x2 = ((two * three));
    fcn0();          // void function calls
    fcn1(one, two);
    fcn2(-345 * (able) / baker);
    fcn3;
    x3 = fcn4(89);   // non-void function calls
    x4[5] = x6[7];   // arrays
    x9 = 17 * fcn5(23, fcn6() / (33 - x0));
end
