Created
April 18, 2011 22:36
-
-
Save racbarn/926417 to your computer and use it in GitHub Desktop.
Table of contents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
line_width = 25 | |
puts 'Table of Contents'.center(line_width) | |
puts 'Chapter 1: Getting Started'.ljust(line_width) + 'page 1'.rjust(line_width) | |
puts 'Chapter 2: Numbers'.ljust(line_width) + 'page 9'.rjust(line_width) | |
puts 'Chapter 3: Letters'.ljust(line_width) + 'page 13'.rjust(line_width) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
line_width = 25
begin
puts 'Table of Contents'.center(line_width)
puts 'Chapter 1: Intro'.ljust(line_width) + 'page 1'.rjust(line_width)
puts 'Chapter 2: Numbers'.ljust(line_width) + 'page 9'.rjust(line_width)
puts 'Chapter 3: Letters'.ljust(line_width) + 'page 13'.rjust(line_width)
end