Skip to content

Instantly share code, notes, and snippets.

@racbarn
Created April 18, 2011 22:36
Show Gist options
  • Save racbarn/926417 to your computer and use it in GitHub Desktop.
Save racbarn/926417 to your computer and use it in GitHub Desktop.
Table of contents
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)
@jcasimir
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment