SMProxy

Untitled

May 13th, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ; Cool stuff you can do with organic, part 1
  2.  
  3. .macro repeat(statement, count)
  4. .for i=0, i<count, i + 1
  5. statement
  6. .end
  7. .endmacro
  8.  
  9. repeat("SET A, B", 5) ; You can wrap statements that include ',' in quotes
  10. ; Outputs "SET A, B" five times
Advertisement
Add Comment
Please, Sign In to add comment