my expected outcome is "a b".
I know that it's wokring with expr
var_1 <- expr("a")
var_2 <- expr(paste("b"))
eval_tidy(expr(!!var_1 %>% !!var_2))
but I do not understand why this is not working with quosures:
var_1 <- quo("a")
var_2 <- quo(paste("b"))
eval_tidy(quo(!!var_1 %>% !!var_2))
My understanding was, that the advantage of quosures over extressions is, that they take into account the environment. I my use case this would be useful so I am looking for a solution using "quo".