×
×
Correct!
Insert the missing part to return a result (15).
my_function <- function(x) {
@(6) (5 * x)
}
print(my_function(3))
my_function <- function(x) {
return (5 * x)
}
print(my_function(3))
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 40 exercises.
Are you sure you want to continue?