Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
py-nutshell
- Loading branch information
fc5555bThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love this.
But can I also ask for spaces around operators (e.g.
if 1 == 2 {instead ofif 1==2 {) and consistent use of single quotes (e.g.say 'hello';instead ofsay "hello";)? 😄fc5555bThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Sure, fixed in 5952a50.
I added a bit about interpolation, and put single characters and words in single quotes, but longer strings in double quotes; this seems like an okay way to illustrate that both are acceptable (441c3e6), and seems sort of consistent with the rest of the docs (as best I can tell).