Skip to content

Instantly share code, notes, and snippets.

@eqbal
Created August 14, 2023 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eqbal/b7926c50f59c321d139cfc64e27c9212 to your computer and use it in GitHub Desktop.
Save eqbal/b7926c50f59c321d139cfc64e27c9212 to your computer and use it in GitHub Desktop.
Ruby Code to Say Goodbye to My Team at Mrsool
class Farewell < Mrsool
def initialize(colleagues)
@colleagues = colleagues
puts "It's time to close this chapter. You've all been the 'attr_accessor' to my success."
end
def thank_you
puts "From 'do' loops to food scoops, we've built an 'exception'al app."
end
def stay_in_touch
puts "Let's not 'break' our connection. Find me at https://www.linkedin.com/in/eqbalq/"
end
end
goodbye = Farewell.new(Mrsool_Team)
goodbye.thank_you
goodbye.stay_in_touch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment