Skip to content

Instantly share code, notes, and snippets.

@alexandre
Created March 10, 2015 02:08
Show Gist options
  • Select an option

  • Save alexandre/442ec9dc189e222d3aae to your computer and use it in GitHub Desktop.

Select an option

Save alexandre/442ec9dc189e222d3aae to your computer and use it in GitHub Desktop.
tests with Python and Haskell...
>>>x = [1, 2]
>>> x.append(x)
>>> x[2][2][2][2] ==x
True
let x = [1, 2]
let x = x ++ x
x !! 2 == x
--ZZZzz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment