ok so, i was wondering how to make 2 things happen at the same time when using case of like:
or like:Code:Program New; var x,y: Integer; begin x:= 1; Case x of 1 : x:= 0; y:= 1; end; end.
or what?Code:Program New; var x,y: Integer; begin x:= 1; Case x of 1 : x:= 0; 1 : y:= 1; end; end.
plz help me out here





Reply With Quote