Skip to content

Instantly share code, notes, and snippets.

@elizabrock
Created April 26, 2013 16:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elizabrock/5468471 to your computer and use it in GitHub Desktop.
Save elizabrock/5468471 to your computer and use it in GitHub Desktop.
The shell of a program that takes arguments and prints a calendar (for NSS Spring 2013)
month = ARGV[0]
year = ARGV[1]
puts `cal #{month} #{year}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment