Created
November 8, 2012 13:32
-
-
Save tlevine/4038828 to your computer and use it in GitHub Desktop.
Fibonacci exclamations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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