Intro Thoughts

Status Quo

library(tidyverse)

power1 <- function(exp) {
  function(x) {
    x ^ exp
  }
}

square <- power1(2)
cube <- power1(3)

Experiment

Closing remarks, Other Relevant Work, Caveats