Compiling R code

How R code are compiled.
Is it directly converted to machine code and how it is cross platform

R is an interpreted programming language (there is no compiling)

The interpreter executes the program directly, translating each statement into a sequence of one or more subroutines, and then into another language (often machine code).

3 Likes

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.