Contact: aviboots(AT)netvision.net.il
41,567 questions
54,187 answers
573 users
program DoubleVariable; var num: Integer; begin num := 8; num := num shl 1; // This will double the value of num WriteLn(num); end. (* run: 16 *)