Snippets tagged “comments”
5 snippets use this tag.
- Eclipse comment/uncomment shortcut?Java
In Eclipse, you can use the following keyboard shortcuts to comment and uncomment lines of code:
- How and When to Write Comments in JavascriptJavaScript
There are 2 types of JavaScript comments: single-line and multi-line. See when to use them with examples, and also use comments to prevent execution when testing alternative code.
- How do I create multiline comments in Python?Python
In Python, you can create a multiline comment using triple quotes (either single or double) at the beginning and end of the comment.
- How to Add and Use CSS CommentsCSS
A CSS comment is used to give explanatory information to the code or to prevent the browser from trying to interpret particular parts of the style sheet.
- How to comment out a block of code in PythonPython
In Python, you can comment out a block of code by using the "#" symbol at the beginning of each line.