Hacker News new | ask | show | jobs
by k00pa 4498 days ago
I sometimes use similar approach with code to indicate really hacky code that should be removed before any bigger releases.
1 comments

I think that's what //FIXME: is for. TODO and FIXME are both commonly supported, as well as a few others.
Similarly, when adding debugging-aid print statements, I prefix them with ">>>", and make sure I don't use it elsewhere.
why not "debug: "?