Advertisement
Guest User

Untitled

a guest
Feb 12th, 2014
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.12 KB | None | 0 0
  1. def print x, &b; yield; super x; end
  2.  
  3. print('Line1') {
  4. print('Line2') {
  5. print('Line3') {
  6. print('Line4') { } } } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement