Skip to content

Instantly share code, notes, and snippets.

@isomorphisms
Created August 3, 2015 17:42
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 isomorphisms/68015b7dfaaa9ee4d617 to your computer and use it in GitHub Desktop.
Save isomorphisms/68015b7dfaaa9ee4d617 to your computer and use it in GitHub Desktop.
compute on the language 1
require(magrittr)
substitute(ver)
substitute(ver) %>% as.character
substitute(ver) %>% as.character %>% strsplit(NULL)
substitute(ver) %>% as.character %>% strsplit(NULL) %>% unlist
substitute(ver) %>% as.character %>% strsplit(NULL) %>% unlist %>% rev
substitute(ver) %>% as.character %>% strsplit(NULL) %>% unlist %>% rev %>% paste(collapse='')
substitute(ver) %>% as.character %>% strsplit(NULL) %>% unlist %>% rev %>% paste(collapse='') %>% do.call(args=list(1:5))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment