Advertisement
Guest User

Untitled

a guest
Jun 7th, 2011
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
COBOL 0.39 KB | None | 0 0
  1. # templescript assignment ops
  2.  
  3. "Robert"      => name \ rho     # unconditional, replaces all names
  4.  
  5. "rho"         => nickname \ rho # unconditional, replaces only nicknames
  6.  
  7. "der-rho-ist" +> nickname \ rho # unconditional, adds
  8.  
  9. ()            => name \ rho     # unconditional, removes all names
  10.  
  11. #--
  12.  
  13. "Robert"     ||> name \ rho     # conditional, assigns only if no name existed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement