This blog is primarily focus on Java fundamentals and the libraries built on top of Java programming language. Most of the post are example oriented, hope you have fun in reading my blog....:)
Operator
‘<-‘ is used to assign a value to variable.
> i <-10> i
[1] 10> print(i)
[1] 10
Expression
‘i <- 10” assign value 10 to the variable i. You can print value of I by
simply typing it on R console (or) by passing it as an argument to print
method.
No comments:
Post a Comment