Simple syntax - page 3 The ";" or semi-colon is used to put multiple instructions on one line. Thus, A => B C => D E => F can be written: A => B ; C => D ; E => F Additionally, the "," or comma can be used where multiple datums are being copied, all to the same destination object. For example, these five instructions: A => F ; B => F ; C => F ; D => F ; E => F can also be written: A , B , C , D , E => F