mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
8 lines
127 B
R
8 lines
127 B
R
#!/usr/bin/env Rscript
|
|
|
|
f <- file("stdin")
|
|
open(f)
|
|
line<-readLines(f, n=1, warn = FALSE)
|
|
|
|
write(paste0("Hi ", line), stderr())
|