Difference between revisions of "Pascal for C users"

From Lazarus wiki
Jump to navigationJump to search
Line 18: Line 18:
 
|   ==  
 
|   ==  
 
|   =
 
|   =
|  
+
|   [[Equal]]
 +
|-
 +
|   /  
 +
|   /
 +
|   [[Slash|Division]] (or sometimes [[Div|div]])  
 
|-
 
|-
 
|   %  
 
|   %  

Revision as of 21:34, 22 October 2007

  C     Pascal  
  {     Begin    
  }     End  
  =     :=   Becomes  
  ==     =   Equal
  /     /   Division (or sometimes div)  
  %     Mod  
  !     Not  
  !=     <>   Not equal  
  &&     And  
  ||     Or  
  ^     Xor  
  >>     Shr   bit shift right  
  <<     Shl   bit shift left  
  ++     Inc  
  --     Dec  
  /*     {  
  */     }  
  //     //  
  if()     If Then  
  if() else     If Then Else  
  while     While Do  
  do while     Repeat Until Not   
  do while !     Repeat Until    
  for ++     For To Do  
  for --     For Downto Do    
  switch case break     Case Of End  
  switch case break default     Case Of Else End