Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created June 7, 2021 18:44
Show Gist options
  • Select an option

  • Save BrooklinJazz/8fae045d8a8131eeaa35c40007f44138 to your computer and use it in GitHub Desktop.

Select an option

Save BrooklinJazz/8fae045d8a8131eeaa35c40007f44138 to your computer and use it in GitHub Desktop.
List Operators
[1, 2] ++ [3, 4] # [1, 2, 3, 4]
[1, 2, 3] -- [1, 3] # [2]
[1, 2, 3] -- [1] # [2, 3]
[1, 2, 3] -- [3, 1] # [2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment