Skip to content

Instantly share code, notes, and snippets.

@lgautier
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgautier/f89b53bdfc4bbfa50ad1 to your computer and use it in GitHub Desktop.
Save lgautier/f89b53bdfc4bbfa50ad1 to your computer and use it in GitHub Desktop.
power <- function(x, n) {
# a not-so-useful reimplementation
x ^ n
}
square <- function(x) {
x^2
}
cube <- function(x) {
x^3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment