Skip to contents

mire collects miscellaneous R extensions that make the author’s experience using R a little bit more pleasant.

Installation

You can install the development version of mire from GitHub with:

# install.packages("devtools")
devtools::install_github("mikmart/mire")

Example

The let() function (inspired by Haskell’s let expression) can be used to sequentially declare local variables for evaluating an expression:

library(mire)

let(x = 2, y = x + 3, y * y)
#> [1] 25