1: #line 1199 "./lpsrc/flx_regress.pak" 2: //Check laziness 3: #line 1199 "./lpsrc/flx_regress.pak" 4: //Check lazy variables
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;
1: 1 2: 2