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.
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.
For example, assume we want to debug function `print`, first run following command:
`.fastr.srcinfo(print)`
It will output something similar to
`[1] "/tmp/deparse/print-fca37561e0.r#1"`
which is the file containing the deparsed source code of `print`.
The generated source file is now associated with function print and a breakpoint can be installed.
# Disclaimer
Since FastR is still in its development phase, debugging may not be possible in all cases.