There are many ways to run your R application. The simplest one is using `source(file.R)`.
There are many ways to run your R application. The simplest one is using `source("file.R")`.
# Additional Features
The NetBeans debugger is source-location-based meaning that it assumes every source of an applicates resides somehwere in a source file.
However, R applications often run deserialized code or the code is created somehow else.
The NetBeans debugger is source-location-based meaning that it assumes every source of an application resides somewhere in a source file.
However, R applications often run deserialized code or the code is created in some other way.
In order to be still able to use the NetBeans debugger for such source, you first need to generate a temporary source file using a FastR builtin function.