Created
December 11, 2013 22:54
-
-
Save chilts/7920015 to your computer and use it in GitHub Desktop.
Symmetrical comments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I used to do this: | |
/* | |
* | |
* For long comments. This was in 1994. | |
* | |
*/ | |
// Then I did this: | |
/** | |
* | |
* Because I liked the look of it. This was probably around 1995. | |
* | |
**/ | |
// Then, I saw https://github.com/dannycoates/ do this: | |
/*/ | |
* | |
* And I was hooked. It is now 2013. | |
* | |
/*/ | |
// Why didn't I think of that. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment