Created
July 9, 2012 19:00
-
-
Save Hunter-Dolan/3078235 to your computer and use it in GitHub Desktop.
lines.rb
This file contains 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
if currentPlace in placeWords | |
starters = ["The time is ", "#{nick} the time's ", "The time's ", "The time is currently ",""] | |
t = Time.nowp | |
theTime = t.strftime("%I:%M%p") | |
"#{starters.sample}#{theTime}in#{currentPlace}" | |
else | |
uhohReturns = ["Valid place please!", "Somewhere legit please."] | |
uhohReturns.sample | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment