powered by
Shorthand to initialize one or more objects
init(..., value = NULL)
initialized objects set to the value specified
variable names to initialize
value to initialize them to
init(t,u,v) message(t) # t = NULL message(u) # u = NULL message(v) # v = NULL init(j,k,m,value = 7) message(j) # j = 7 message(k) # k = 7 message(m) # m = 7
Run the code above in your browser using DataLab