Created
December 31, 2023 18:07
-
-
Save k41n3w/cab925592bfc1f1fe6fbff9dba494529 to your computer and use it in GitHub Desktop.
Código 10 - Post de 'Passagem de parâmetros em Ruby"
This file contains hidden or 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
class Person | |
def method_missing(method_name, *args) | |
puts "Método '#{method_name}' não encontrado." | |
end | |
end | |
person = Person.new | |
person.unknown_method | |
# Retorno: "Método 'unknown_method' não encontrado." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment