Skip to content

Instantly share code, notes, and snippets.

@briandiaz
Last active December 23, 2015 00:39
Show Gist options
  • Save briandiaz/6554963 to your computer and use it in GitHub Desktop.
Save briandiaz/6554963 to your computer and use it in GitHub Desktop.
In honor to Programmer's Day
require 'date'
PROGRAMMERS_DAY_NUMBER = 0x00000100.to_i
module Programmers
def self.Day
(Date.today.yday() == PROGRAMMERS_DAY_NUMBER) ? "Happy Programmers Day!" : "Keep on Working"
end
end
print "#{Programmers.Day}\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment