bsc

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

root / semester_1 / R / Code / R_Prac-1.r

R_Prac-1.r (129B)


      1 # Write a R program to print numbers from 1 to 5.
      2 
      3 i = 1
      4 while(i <= 5) {
      5     print(i)
      6     i = i + 1
      7 }
      8 # or we can use
      9 print(1:5)
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror