The goal of foo is to showcase how to create a simple R package.
You can install the development version of foo from GitHub with:
# install.packages("devtools")
devtools::install_github("ramiromagno/foo")
This is a basic example of what my package can do right now, which is not much!
library(foo)
is_odd(1)
#> [1] FALSE
is_odd(2)
#> [1] TRUE