Skip to content

Instantly share code, notes, and snippets.

@jcasimir
Forked from racbarn/toc.rb
Created April 18, 2011 22:40
Show Gist options
  • Save jcasimir/926424 to your computer and use it in GitHub Desktop.
Save jcasimir/926424 to your computer and use it in GitHub Desktop.
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