6.4. Mixed Mode Arithmetic

Start C++ section to tut/examples/tut313.flx[1 /1 ]
     1: include "std";
     2: open MixedInt;
     3: 
     4: var x = 1;
     5: var y = 2L;
     6: 
     7: print$ x + y; endl;
     8: 
End C++ section to tut/examples/tut313.flx[1]