Guest User

Untitled

a guest
Oct 16th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. {define:FUNC,'foreach',argument}
  2. /* Автоматически передается дефолтный параметр __body - тело будущей функции foreach */
  3. {var:i,0,INT}
  4. {count:count,argument}
  5. {array:collection,[]}
  6. {for:i,i<count,i+1}
  7. {array-value:value,argument,i}
  8. {compile:__body,value}
  9. {/for}
  10. {/define}
Add Comment
Please, Sign In to add comment