fork download
  1. a <- c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
  2. b <- c(1, 2, 3, 4)
  3. print(a+b)
Success #stdin #stdout #stderr 0.21s 39332KB
stdin
Standard input is empty
stdout
 [1]  2  4  6  8  6  8 10 12 10 12
stderr
Warning message:
In a + b : longer object length is not a multiple of shorter object length