Inference II



Inference II
Smart pascal source code
procedure MyProc; const two = 2; var i: Integer := two; j := i; iStr = IntToStr(i); obj := TObject.Create; begin if i = j then WriteLn('match int'); if iStr = '2' then WriteLn('match str'); end; MyProc; {<<< RESULT - CONSOLE LOG >>> ----------------------------- match int match str ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}