Code:
###################################################
# I have my own kooky little standard for using
# comments in my code.
#
# I use the # for internal documentation including:
# - A header at the top of each script with details
# like author, date, log of changes.
# - A header to each function defined in the script
# - And sub-headings in my code to break up and explain
# logic.
###################################################
I then use the C style comments to temporarily comment
out code for debugging purposes
//like this
// ...
/* and
like
this
*/
Bookmarks