bsc

Comprehensive codebase and cou...
Log | Files | Refs | README | LICENSE

R_Code-15.r (239B)


      1 # Asking for a name
      2 name <- readline(prompt = "Enter your name: ")
      3 
      4 # Asking for a number (requires conversion)
      5 age <- readline(prompt = "Enter your age: ")
      6 age <- as.numeric(age) 
      7 
      8 print(paste("Hello", name, "you are", age, "years old."))
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror