class SoftwareEngineer < Person
attr_reader :years_professional
def initialize(name:, place_of_birth:, birthdate:)
super(name: name, place_of_birth: place_of_birth, birthdate: birthdate)
end
def greeting
super # 👋 Hi, I’m @petertimwalker from Boston MA and I'm 26 years old
puts "I've been working professionally for the past #{years_professional} years"
puts "and I'm interested in Ruby, React, AWS, and Docker"
end
private
def years_professional
@years_professional ||= 4
end
end
- Boston MA
Popular repositories Loading
-
-
kickstart.nvim
kickstart.nvim PublicForked from nvim-lua/kickstart.nvim
A launch point for your personal nvim configuration
Lua
-
-
-
-
vocode-core
vocode-core PublicForked from vocodedev/vocode-core
🤖 Build voice-based LLM agents. Modular + open source.
Python
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.