Advertisement
jjdeharo

Untitled

Jan 4th, 2020
936
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.13 KB | None | 0 0
  1. readline <- function(texto) {
  2.   cat(texto)
  3.   options(echo=F)
  4.   t <- readLines(stdin(), n=1)
  5.   options(echo=T)
  6.   return(t)
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement