I\'m curious to know if R can use its eval() function to perform calculations provided by e.g. a string.
eval()
This is a common case:
eval(\"5
Similarly using rlang:
rlang
eval(parse_expr("5+5"))