glueDo News

glueDo 0.1.0 - Initial Release

We are excited to announce the initial release of the glueDo R package! This package provides a set of convenient wrapper functions that allow you to pass expressive glue strings directly to common R functions, executing them with evaluated string content.

Key Features

Included Functions

Example

```r world <- “mars” glue_message(“HELLO {world}!”) # Prints: HELLO mars!