print("Hello, World!");
print(1 + 2 * 5 / 30)
print(0xFF - 0xAC)
foo <- "Hello,"
bar <- " World!"
baz <- foo + bar
foo <- function (a b c) {
a + b + c
}
Function returns last evaluated expression it the it's body so thing below will return sum of three arguments passed to it
result <- foo(1 2 3)
pow2 <- function(a) a * a
print(pow2(3))