Advertisement
Guest User

Untitled

a guest
May 5th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. width = 50
  2.  
  3. puts "Let's do some Reading!"
  4. gets
  5. toc = ['Table of Contents', 'Chapter 1: Introductions', 'Page 4', 'Chapter 2: Small Talk', 'Page 15']
  6.  
  7. puts toc[0].center(width)
  8. puts toc[1].ljust(width/2) + toc[2].rjust(width/2)
  9. puts toc[3].ljust(width/2) + toc[4].rjust(width/2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement