Skip to content

Instantly share code, notes, and snippets.

@pjambet
Created March 16, 2015 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pjambet/12eeed7973e9968c3f7b to your computer and use it in GitHub Desktop.
Save pjambet/12eeed7973e9968c3f7b to your computer and use it in GitHub Desktop.
# option A
list = [1,2,3,4]
list2 = [
1,
2,
3,
4,
]
hash = {a: 1, b: 2}
hash2 = {
a: 1,
b: 2,
}
#option B
list = [1,2,3,4]
list2 = [
1,
2,
3,
4
]
hash = {a: 1, b: 2}
hash2 = {
a: 1,
b: 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment