1 2 3 4 5 6 7 8 9
test_method <- function(arg_1, arg_2) { result <- arg_1 + arg_2 return(result) } test_kwargs <- function(arg_1 = 1, arg_2 = 1) { result <- arg_1 * arg_2 return(result) }