Skip to content

Instantly share code, notes, and snippets.

@aoisensi
Created December 27, 2012 06:37
Show Gist options
  • Save aoisensi/4386014 to your computer and use it in GitHub Desktop.
Save aoisensi/4386014 to your computer and use it in GitHub Desktop.
def cons(x, xs):
try:
x.append(xs)
return x
except AttributeError:
return [x,xs]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment