aboutsummaryrefslogtreecommitdiff
path: root/test_evaluate_expression.r
blob: 256abea5db714522c98f9d7365eed734842c7ea2 (plain)
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)
}