Skip to content

Instantly share code, notes, and snippets.

View 213edu's full-sized avatar

Ryan 213edu

  • Investments
  • San Francisco
View GitHub Profile
@213edu
213edu / pi.rb
Last active August 29, 2015 13:57
#!/usr/bin/ruby
month = Time.now.month
day = Time.now.day
if month == 3 && day == 14
then
puts "Happy Pi day!~"
end
@213edu
213edu / SimpleStringMethods.rb
Last active August 29, 2015 13:56
Journey of learning Ruby
old_string = "Ruby is cool"
new_string = old_string.reverse.upcase
puts new_string