fork download
  1. a <- 10
  2. b <- 2.3
  3.  
  4. a + b
  5. a - b
  6. a * b
  7. a / b
  8. a %% b
  9. a %/% b
  10. a < b
Success #stdin #stdout 0.3s 22832KB
stdin
Standard input is empty
stdout
[1] 12.3
[1] 7.7
[1] 23
[1] 4.347826
[1] 0.8
[1] 4
[1] FALSE