I am using the example of calculating the length of the arc around a circle and the area under the arc around a circle based on the radius of the circle (r) and the angle of the the arc(theta). The area and the length are both based on r and theta, and you can calculate them simultaneously in python.
In python, I can assign two values at the same time by doing this.
    from math import pi
    def circle_set(r, theta):
        return theta * r, .5*theta*r*r
    arc_len, arc_area = circle_set(1, .5*pi) 
Implementing the same structure in R gives me this.
    circle_set <- function(r, theta){
        return(theta * r, .5 * theta * r *r)
        }
    arc_len, arc_area <- circle_set(1, .5*3.14)
But returns this error.
arc_len, arc_area <- circle_set(1, .5*3.14)
Error: unexpected ',' in "arc_len,"
Is there a way to use the same structure in R?
 
     
    