1.2.3. test/regress/rt-1.01.03

Start felix section to test/regress/rt-1.01.03-0.flx[1 /1 ]
     1: #line 230 "./lpsrc/flx_regress.pak"
     2: //Check laziness
     3: #import <flx.flxh>
     4: // test lazy functions and procedures
     5: print "lazy expr eval test\n";
     6: var x = 1;
     7: var y = 2;
     8: val f = {x+y};
     9: print (f ()); print "\n";
    10: x = 3;
    11: print (f ()); print "\n";
End felix section to test/regress/rt-1.01.03-0.flx[1]
Start data section to test/regress/rt-1.01.03-0.expect[1 /1 ]
     1: lazy expr eval test
     2: 3
     3: 5
End data section to test/regress/rt-1.01.03-0.expect[1]