# Define function name
multiply <- function(arg1, arg2){
# Multiply the arguments together
result <- arg1 * arg2
# Return that to the user
return(result)
} # End function operations
# Once created, it can be used!
multiply(arg1 = 10, arg2 = 5)
[1] 50