1.2.32. test/regress/rt-1.01.32

     1: #line 1199 "./lpsrc/flx_regress.pak"
     2: //Check laziness
     3: #line 1199 "./lpsrc/flx_regress.pak"
     4: //Check lazy variables
Start felix section to test/regress/rt-1.01.32-0.flx[1 /1 ]
     5: #include <flx.flxh>
     6: 
     7: var v = 1;
     8: 
     9: fun x => v;
    10: fun y : int => 1; // just check syntax here
    11: 
    12: print$ x; endl;
    13: v = 2;
    14: print$ x; endl;
End felix section to test/regress/rt-1.01.32-0.flx[1]
Start data section to test/regress/rt-1.01.32-0.expect[1 /1 ]
     1: 1
     2: 2
End data section to test/regress/rt-1.01.32-0.expect[1]