Skip to content

Instantly share code, notes, and snippets.

@goodside
Created July 24, 2010 02:47
Show Gist options
  • Save goodside/488341 to your computer and use it in GitHub Desktop.
Save goodside/488341 to your computer and use it in GitHub Desktop.
traditional <- data.frame(
a = 4,
b = list('caterpillars', 'porcupines', 'elephants',
'electric eels that approach silently',
paste(something())
)
)
lispy <-
data.frame(a = 4,
b = list('caterpillars', 'porcupines', 'elephants',
'electric eels that approach silently',
paste(something())))
#######
traditional2 <- some_func(
takes_a_very(long),
list(
of, arg, u(ments), which(nest), 'rather',
'deeply', 'becoming', cumbersome(to_keep_track_of())
)
)
lispy2 <- some_func(takes_a_very(long),
list(of, arg, u(ments), which(nest),
'rather', 'deeply', 'becoming',
cumbersome(to_keep_track_of())))
hybrid2 <- some_func(
takes_a_very(long),
list(
of, arg, u(ments), which(nest), 'rather', 'deeply', 'becoming',
cumbersome(to_keep_track_of())))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment