Skip to content
This repository has been archived by the owner on Sep 1, 2021. It is now read-only.

Commit

Permalink
R Example Added.
Browse files Browse the repository at this point in the history
  • Loading branch information
erfanMhi committed May 27, 2018
1 parent e6d95a9 commit b124f78
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cup_test.r
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
subProgram <- function(x,y)
{
if(y>4) {
for (i in 1:x) {
print("Hello World")
}
} else {
print("bye")
}
}

subProgram(5,8)

0 comments on commit b124f78

Please sign in to comment.