Skip to content

Instantly share code, notes, and snippets.

@AnkurVyas-BTC
Created March 23, 2019 08:18
Show Gist options
  • Select an option

  • Save AnkurVyas-BTC/2c38736eb15fea5171f80e49244b60b6 to your computer and use it in GitHub Desktop.

Select an option

Save AnkurVyas-BTC/2c38736eb15fea5171f80e49244b60b6 to your computer and use it in GitHub Desktop.
class HomoHabilis < Human
def talk
'Agrrr!'
end
def height
'1.29m'
end
def social_security_number
raise NotImplementedError
end
end
class HomoSapiens < Human
def talk
'Hello!'
end
def height
'1.70m'
end
def social_security_number
"AAA-GG-SSSS"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment