fork download
  1. main <- function() {
  2. hello() # OK
  3. }
  4.  
  5. hello <- function() {
  6. write("Hello World!", stdout())
  7. }
  8.  
  9. main()
Success #stdin #stdout 0.24s 38872KB
stdin
Standard input is empty
stdout
Hello World!