helium <- function(x,...) {
UseMethod("helium")
}
helium.default <- function(x,...) {
print("hi")
}
helium.first <- function(x,...) {
message("this is the first method")
message(emoji::emoji("hot"))
NextMethod()
}
helium.second <- function(x,...) {
message("this is the second method")
message(emoji::emoji("balloon"))
}
