crun: Concatenate and run.

View source: R/crun.R

crunR Documentation

Concatenate and run.

Description

Concatenate arguments and run them as a command. Shorthand for eval( parse( text = paste0( ... ) ) ). Consider also using base::get() which can be used to get an object from a string, but only if it already exists. Author: Bryce Chamberlain.

Usage

crun(...)

Arguments

...

Character(s) to be concatenated and run as a command.

Examples

crun( 'print(', '"hello world!"', ')')
crun('T', 'RUE')

easyr documentation built on March 31, 2023, 6:22 p.m.

Related to crun in easyr...