Skip to content

Instantly share code, notes, and snippets.

@instinctive
Created July 16, 2018 21:08
Show Gist options
  • Save instinctive/f7c7c4192c15863a1b68273f4df15648 to your computer and use it in GitHub Desktop.
Save instinctive/f7c7c4192c15863a1b68273f4df15648 to your computer and use it in GitHub Desktop.
> foo x = 9 : x
> a = [1,2,3]
> b = a
> foo a
[9,1,2,3]
> a
[1,2,3]
> b
[1,2,3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment