Skip to content

Instantly share code, notes, and snippets.

@tlevine
Created November 8, 2012 13:32
Show Gist options
  • Save tlevine/4038828 to your computer and use it in GitHub Desktop.
Save tlevine/4038828 to your computer and use it in GitHub Desktop.
Fibonacci exclamations
paste(unlist(sapply(rev(c(0, 1, 1, 2, 3, 5, 8, 13, 21, 34)), function(n) {c(rep('!', n), ' ')})), collapse='')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment