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)
bscComprehensive codebase and cou... | |
| Log | Files | Refs | Activity | README | LICENSE |
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)