Guest User

Untitled

a guest
Jun 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. 3.times {
  2. println it
  3. }
  4. println "---"
  5. 3.upto(9) {
  6. println it
  7. }
  8. println "---"
  9. 3.step(9,3) {
  10. println it
  11. }
  12.  
  13. run in
  14. grails console
Add Comment
Please, Sign In to add comment