Advertisement
Guest User

Variable Initialisation

a guest
Apr 26th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.13 KB | None | 0 0
  1. program VariableInitialisation;
  2.  
  3. var
  4.     myInt : Integer;
  5. begin
  6.     if 1 > 2 then
  7.         myInt := 1;
  8.  
  9.     WriteLn(myInt);
  10. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement