Comments
From Rosetta Code
You are encouraged to solve this task according to the task description, using any language you may know.
Demonstrate all ways to include text in a language source file which is completely ignored by the compiler or interpreter.
[edit] 4D
`Comments in 4th Dimension begin with the accent character and extend to the end of the line.
[edit] 6502 Assembly
Note: syntax depends on the assembler software but use of a semicolon is fairly standard
nop ; comments begin with a semicolon
[edit] 8086 Assembly
Note: syntax depends on the assembler software but use of a semicolon is fairly standard
MOV AX, 4C00h ; go back to DOS
INT 21h ; BIOS interrupt 21 base 16
[edit] ActionScript
- See Java
[edit] Ada
-- All Ada comments begin with "--" and extend to the end of the line
[edit] ALGOL 68
[edit] With Standard
Comments can be inserted in variety of ways:
| Algol68 as typically published,
includes bold typeface. | Quote stropping,
like to Wiki markup. | Case stropping,
7-bit/ascii implementations. | Res stropping,
detecting reserved words. | Point stropping,
6-bits/byte implementations. |
| ¢ The original way of adding your 2 cents worth to a program with the "cent" character ¢ | ¢ TEXT ¢ | |||
| co Style i comment co
comment text comment | 'co' text 'co'
'comment' text 'comment' | CO text CO
COMMENT text COMMENT | co text co
comment text comment | .CO TEXT .CO
.COMMENT TEXT .COMMENT |
| # Style ii comment with the hash character # | # TEXT # | |||
Notes:
- The # test # and ¢ text ¢ comment tends to be used for inline comments. And the COMMENT text COMMENT style tends to be used to comment out entire blocks.
- The script algol68.vim can be used to highlight commented blocks while editing source code.
[edit] With Extensions
£ This is a hash/pound comment for a UK keyboard £
[edit] AmigaE
/* multiline comment
are like C ... */
-> this is a end of line comment
[edit] AutoHotkey
Msgbox, comments demo ; end of line comment
/*
multiline comment1
multiline comment2
*/
For multi line comments, the /* and */ must be on their own separate lines (i.e. nothing else can be on the same line).
[edit] AutoIt
#cs
Everything between the cs and and the ce is commented.
Commented code is not used by the computer.
#ce
;individual lines after a semicolon are commented.
[edit] AWK
The hash symbol # start a comment; it ends at the end of line.
BEGIN { # this code does something
# do something
}
[edit] BASIC
100 REM Standard BASIC comments begin with "REM" (remark) and extend to the end of the line 110 PRINT "this is code": REM comment after statement
Works with: QuickBasic version 4.5
'this is a comment PRINT "this is code" 'comment after statement
Works with: FreeBASIC version 0.16 or later In addition to line comments described above, FreeBASIC supports block comments:
/' This is a multi line comment. Requires FreeBASIC 0.16 or later. Last line of the comment block. '/ DIM a AS /' Comment in the middle of statement '/ Integer
[edit] Batch File
rem Single-line comment.
There is another (unsupported) option, using a double-colon ::. However, this has issues with some syntactic constructs and therefore may raise syntax errors.
:: Another option, though unsupported and known
:: to fail in some cases. Best avoided.
Since comment lines are skipped entirely by the parser multi-line comments aren't possible even with line continuation.
[edit] Befunge
Like Brainfuck, all characters and whitespace which are not commands are ignored. Also, since the code/data-space is two-dimensional, comments can be placed anywhere that will be untouched by the instruction pointer and data access commands. Finally, in Funge-98, the ; instruction immediately skips to the next ; instruction, which allows to isolate comments from code.
Works with: Befunge version 93
& read a number 2+ add two .@ display result and exit
^- inline comments -^ <-^- other comments
Works with: Befunge version 98
&;read a number;2+;add two;.@;display result and exit;
^- inline comments -^ <-^- other comments
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;completely isolated comment block for the paranoid;
;(almost - you can still skip into it.) ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[edit] Brainf***
This is a comment
Most ASCII characters may be used for comments; only the eight characters "+-<>[],." are Brainf*** commands. Extra care must be used when using punctuation, particularly the comma or period. These are I/O operators and are actually commands rather than comments, and are instead compiled into the program if used and may have to be "debugged" and removed if you forget this issue.
[edit] C
/* This is a comment. */
/* So is this
multiline comment.
*/
The comment starts at the /*, and ends at the */. A comment may be used between any tokens. It cannot be used inside tokens, that is, given the code
struct charisma {};
void f(char/* comment */isma) {}
the function takes an argument of type char, named isma, not an unnamed argument of type charisma.
Comments cannot be nested; that is, if you write
/* some comment /* trying to nest some other comment */ inside */
the comment ends at the first */, and inside */ is again interpreted as source code (almost certainly causing a compile error). Some compilers have the option to allow nested comments, but this is not a standard feature.
Conditional compilation also can be used to make the compiler ignore some text:
#if 0
While technically not a comment, this is also ignored by the compiler
#endif
The trick is that 0 is always false, therefore the text between #if 0 and #endif is never compiled. While this should never be used for actual comments, it's an easy way to comment out some code, especially because it doesn't interfere with normal (documentation) comments.
Conditional compile "comments" can be nested:
#ifdef UNDEFINED
This is not compiled.
#if 0
Nor is this.
#endif
And this still is not compiled.
#endif
Works with: ANSI
Even though the compiler doesn't see #if 0 text, the preprocessor does. Therefore some minimal rules still have to be followed. For example, the following code is not valid:
#if 0
This isn't valid.
#endif
That's because the preprocessor will interpret the apostrophe as beginning of a character constant, and will complain because that character constant isn't terminated with another apostrophe.
Note that the problem mentioned above cannot occur if there's valid code between the #if 0 and #endif.
Works with: C99
// C++ single-line comments were adopted in the C99 standard.
[edit] C++
- See also C
Single line C++-style comments
// This is a comment
C++-style comments start with // and reach up to, but not including, the end of line (more exactly, up to the next unescaped newline). While formally, C++-style comments cannot be nested either, in practice they can:
// This is a valid comment // with a "nested" comment
That's because starting with the first // everything in the line is ignored, including the second //. The fact that the newline is not part of the comment is important for multi-line macro definitions. It means that in the code
#define FOO \
(macro text) // comment
(no more macro text)
the line (no more macro text) is not part of the macro definition. Also escaping the line break at the end of the comment with '\' doesn't help, because that would make the third line part of the comment instead. Comments inside macros therefore have to be C-style.
[edit] C#
//This is a comment.
//This is other comment.
/* This is a comment too. */
/* This is a
multi-line
comment */
[edit] Chef
Comment Stew.
This is a comment.
The other comment is a loop, but you can name it anything (single word only).
You can also name ingredients as comments
This is pseudocode.
Ingredients.
Ingredient list
Method.
Methods.
SingleWordCommentOne the Ingredient.
Methods.
SingleWordCommentTwo until SingleWordCommentOned.
Methods.
[edit] Clean
Clean comments are similar to C++.
Start = /* This is a multi-
line comment */ 17 // This is a single-line comment
In contrast to C++ comments can be nested.
Start = /* This is a comment /* Nested comment */ still a comment */ 17
[edit] Clojure
Anything from a semicolon to the end of a line is a comment.
;; This is a comment
(defn foo []
123) ; also a comment
The (comment) macro will prevent a form from being evaluated, returning nil no matter what is contained in the comment. However the forms inside the comment form must be properly parseable (parentheses balanced, etc.) or an exception will be thrown.
(comment (println (foo)) "bar" :baz 123 (System/exit 0)) ;; does nothing, returns nil
Finally, the #_ reader macro will cause a form to be ignored by the reader. Unlike (comment), this does not return nil; the surrounding code is evaluated as though the ignored form isn't even there.
(+ 1 (comment "foo") 3) ;; Throws an exception, because it tries to add nil to an integer
(+ 1 #_"foo" 3) ;; Returns 4
[edit] ColdFusion
In tags:
As ColdFusion's grammar is based around HTML syntax, commenting is similar to HTML. Note that in the examples below, you will need to remove the space between the < and the !.
< !--- This is a comment. Nothing in this tag can be seen by the end user.
Note the three-or-greater dashes to open and close the tag. --->
< !-- This is an HTML comment. Any HTML between the opening and closing of the tag will be ignored, but any ColdFusion code will still run.
Note that in the popular FuseBox framework for ColdFusion, the circuit.xml files require that you use this style of comment. -->
In script:
/* This is a comment */
// This is also a comment
[edit] Common Lisp
Common Lisp provides line comments (;) and block comments (#|...|#).
Block comments can nest (#|...#|...|#...|#), unlike block comments in e.g. C.
In a common convention, header comments are prefaced with four semicolons, top-level (function level) comments use three, comments for sections of code use two, and margin comments use one.
;;;; This code implements the foo and bar functions
;;; The foo function calls bar on the first argument and multiplies the result by the second.
;;; The arguments are two integers
(defun foo (a b)
;; Call bar and multiply
(* (bar a) ; Calling bar
b))
;;; The bar function simply adds 3 to the argument
(defun bar (n)
(+ n 3))
However, comments should not be used for inline documentation, as most defining constructs permit a documentation string (which is then available at runtime).
(defun bar (n)
"Add 3 to the argument."
(+ n 3))
(defclass button (widget)
(label action)
(:documentation "This is a push-button widget."))
[edit] D
Comments mostly work similar to C. Newlines are irrelevant.
/* This is a simple
C-style comment */
// this also is
This type of comments can be nested.
/+ Nestable comment
/+ See?
+/
+/
Yay! I'm code!
[edit] dc
There is no comment syntax in POSIX dc. The convention is to make a string on the stack and move it to an unused register; a no-op.
[Making and discarding a string acts like a comment] sz
GNU dc added the comment syntax of many other scripting languages.
# remainder of line is a comment
[edit] Delphi
- See also Pascal
In addition, Delphi also allows C++ style single line comments:
// single line comment
[edit] E
# This is a regular comment.
? "This is an Updoc comment, which
> is an executable example or test case.".split(" ")
# value: ["This", "is", "an", "Updoc", "comment,", "which
# is", "an", "executable", "example", "or", "test", "case."]
[edit] Emacs Lisp
A comment is started by ; and reaches to the end of the line.
; This is a comment
Another way to add comments is to use strings at places where the result of an expression is ignored, since they simply evaluate to themselves without any effect. Note that strings can be multi-line:
"This is effectively a comment,
if used at a place where the result is ignored"
Note that strings at the beginning of function definitions are interpreted as documentation strings for the function (i.e. Emacs will display them if asked for help about the function), e.g.
(defun subtract-second-from-first (x y)
"This function subtracts its second argument from its first argument."
(- y x))
Due to this, it's debatable if the string at that place can be considered as comment.
[edit] Erlang
% Erlang comments begin with "%" and extend to the end of the line.
[edit] Factor
! Comments starts with "! "
#! Or with "#! "
! and last until the end of the line
[edit] Falcon
Falcon supports C-language style single line and block comments. A single line comment begins with two slashes (//) and ends at the end of the line. A block comment begins with a slash followed by an asterisk, and terminates when an asterisk followed by a slash is met (/*...*/).
/* Start comment block
My Life Story
*/
// set up my bank account total
bank_account_total = 1000000 // Wish this was the case
[edit] FALSE
{comments are in curly braces}
[edit] Forth
Standard Forth includes a number of ways to add comment text. As with everything in Forth, comment characters are actually words that control the compiler.
\ The backslash skips everything else on the line
( The left paren skips everything up to the next right paren on the same line)
Traditionally, the paren comments are used for "stack effect" notation:
: myword ( a b -- c ) ...
This comment means "myword takes two cells on the stack and leaves one". Sometimes, stack effect comment names give clues about the word's function:
: add'em ( a b -- a+b ) + ;
: strlen ( addr -- len ) count nip ;
Some Forth systems implement other commenting words, such as these words from Win32Forth:
\s skips all remaining text in the file
(( skips until the next double-paren,
stretching across multiple lines ))
comment:
Ignore all text in this section
comment;
doc
Another comment block
enddoc
/* C-style comment */
(* Pascal-style comment *)
[edit] Fortran
Compiler: ANSI FORTRAN 77 or compatible (like g77 -strict)
The first six columns in Fortran are traditionally reserved for labels and certain special characters. In particular the letter "C" in the first column indicates a comment:
C This would be some kind of comment
C Usually one would avoid columns 2-6 even in a comment.
Some Fortran compilers have the extension that comments starting with D are treated as non-comments if a special debugging flag is given at the compiler invocation. For example:
C If compiled in debugging mode, print the current value of I
D PRINT *, I
ISO Fortran 90 or later have an inline comment (!) syntax:
real :: a = 0.0 ! initialize A to be zero
In ISO Fortran 90 or later, "C in first column" comments are only allowed in the "fixed" source form familiar to FORTRAN 77 programmers. The "free" source form only has inline comments (!}.
ISO Fortran 95 or later has an optional conditional compilation syntax. If present, it can be used (abused?) to (in effect) comment out blocks of code:
?? if (.false.) then
do while (oh_no)
a = bad_news()
b = big_mistake()
c = gigo()
end do
?? end if
[edit] F#
F# accepts C++ type line comments and OCaml type block comments
// this comments to the end of the line
(* this comments a region
which can be multi-line *)
[edit] Go
// this is a single line comment
/* this is
a multi-line
block comment.
/* It does not nest */
[edit] Golfscript
# end of line comment
[edit] Groovy
- See Java
[edit] Haskell
i code = True -- I am a comment.
{- I am also
a comment. {-comments can be nested-}
let u x = x x (this code not compiled)
Are you? -}
-- |This is a Haddock documentation comment for the following code
i code = True
-- ^This is a Haddock documentation comment for the preceding code
{-|
This is a Haddock documentation block comment
-}
i code = True
[edit] haXe
// Single line commment.
/*
Multiple
line
comment.
*/
[edit] HicEst
! a comment starts with a "!" and ends at the end of the line
[edit] Icon and Unicon
[edit] Icon
Any text after "#" is a comment.
# This is a comment
procedure x(y,z) #: This is a comment and an IPL meta-comment for a procedure
The The Icon Programming Library established conventions for commenting library additions and functions. This included both header block comments and meta comments on procedures within library files.
[edit] Unicon
This Icon solution works in Unicon - comments are identical.
[edit] IDL
The comment character in IDL is the semicolon - everything starting with it and to the end of the line is a comment. Like this:
; The following computes the factorial of a number "n"
fact = product(indgen( n )+1) ; where n should be an integer
[edit] Io
# Single-line comment
// Single-line comment
/* Multi-line
comment */
[edit] J
NB. Text that follows 'NB.' has no effect on execution.
0 : 0
Multi-line comments may be placed in strings,
like this.
)
Note 'example'
Another way to record multi-line comments as text is to use 'Note', which is actually
a simple program that makes it clearer when defined text is used only to provide comment.
)
[edit] Java
Java has two ways to enter normal comments, plus a third type of comment that doubles as a way to generate HTML documentation.
[edit] C Style
/* This is a comment */
/*
* This is
* a multiple
* line comment.
*/
This C-style comment starts with /* and ends with */. The two delimiters may be on the same or separate lines. This style comment may be used anywhere white space is permitted.
[edit] C++ Style (inline)
// This is a comment
This C++-style comment starts with // and extends to the end of line.
[edit] Java Documentation (Javadoc)
/** This is a Javadoc comment */
/**
* This is
* a multiple
* line Javadoc comment
*/
Javadoc is a standardized documentation code for Java. Its comments begin with a forward slash and two stars. Javadoc comments have different tags that signify different things in the methods and classes that they precede.
[edit] JavaScript
- See Java
[edit] Joy
# this is a single line comment
(* this is a
multi-line comment *)
Multi-line comments cannot be nested.
[edit] LaTeX
In LaTeX, comments look like this:
% This is a comment
LaTeX comments start with % and continue up to and including the line break. The fact that the line break itself is commented out as well makes it useful for adding line breaks in the source code of complex macros without LaTeX interpreting them (which may cause extra space or even a paragraph break in the resulting typeset text). For example, the following results in the one word "understandable":
\newcommand{\firstpart}{understand}
\newcommand{\secondpart}{able}
\newcommand{\complete}{%
\firstpart%
\secondpart}
\complete
Without the percent sign after \firstpart, it would have been the two words "understand able".
[edit] Logo
; comments come after a semicolon, and last until the end of the line
[edit] LotusScript
LotusScript has two ways to enter comments.
' This is a comment
Wherever the single quote (') is used, the rest of the line is treated as a comment and ignored. Multi-line comments would each need a single quote mark. This style of comment is usually used for making small in-line or single line comments.
%REM
This is a multi-
line comment.
%END REM
A %REM marker begins a comment block, and a %END REM marker ends the comment block. This style of comment is used for making longer multi-line comments, often at the beginning of a class, sub or function.
[edit] LSE64
# single line comment (space after # is required)
The author of LSE comments the stack effect of words with header comments as follows:
# arg1 arg2 '''yields''' result|''nothing''
[edit] Lua
-- A single line comment
--[[A multi-line
comment --]]
[edit] M4
eval(2*3) # eval(2*3) "#" and text after it aren't processed but passed along
dnl this text completely disappears, including the new line
divert(-1)
Everything diverted to -1 is processed but the output is discarded.
A comment could take this form as long as no macro names are used.
divert
Output:
6 # eval(2*3) "#" and text after it aren't processed but passed along
[edit] Mathematica
(*this is a comment*)
It can be used everywhere and nested if necessary:
If[a(*number 1*)<(* is smaller than number 2*) b, True (*return value (*bool true*)*), False (*return bool false*)]
evaluates to:
If[a < b, True, False]
[edit] MATLAB
%This is a comment
%% Two percent signs and a space are called a cell divider
[edit] MAXScript
-- Two dashes precede a single line comment
/* This is a
multi-line comment */
[edit] Metafont
% this is "to-end-of-line" comment
[edit] Modula-3
(* Comments (* can nest *)
and they can span multiple lines.
*)
[edit] MOO
"String literals are technically the only long-term comment format";
// Some compilers will, however, compile // one-liners to string literals as well (and vice-versa)
/* Classical C-style comments are removed entirely during compile */
[edit] NewLISP
A comment is started by ; and reaches to the end of the line.
; This is a comment
[edit] NSIS
# This is a comment that goes from the # to the end of the line.
; This is a comment that goes from the ; to the end of the
/* This is a
multi-line
comment */
[edit] Objective-C
- See C
[edit] Objeck
#This is a comment.
# This is other comment.
#~ This is a comment too. ~#
#~ This is a
multi-line
comment ~#
[edit] OCaml
(* This a comment
(* containing nested comment *)
*)
(** This an OCamldoc documentation comment *)
[edit] Octave
# I am a comment till the end of line
% I am a comment till the end of line
[edit] Oz
% one line comment
%% often with double "%" because then the indentation is correct in Emacs
/* multi line
comment
*/
[edit] Pascal
(* This is a comment.
It may extend across multiple lines. *)
{ Alternatively curly braces
can be used. }
(* This is a valid comment in Standard Pascal,
but not valid in [[Turbo Pascal]]. }
{ The same is true in this case *)
In Pascal, comments cannot be nested.
[edit] Perl
Works with: Perl version 5.x Single line comment
# this is commented
These may also be at the end of a line
my $var = 1; # this is the comment part
Multi-line comments for inline documentation (Plain Old Documentation, or POD in Perl parlance) follow the format:
=pod
Here are my comments
this is multi-line
=cut
Note that technically, both of the lines beginning with the equals sign must be surrounded on either side for compatibility with all "POD" parsers.
Note also that any string beginning with an equals sign, and that appears in the initial column of a line, begins a multi-line comment. It does not have to be a POD "command:" the following are all valid:
=head1
=head4
=over 4
=Any Old String
Such blocks always end in =cut.
For more info, type at a command prompt (or into a search engine): "perldoc perlpod"
[edit] Perl 6
Works with: Rakudo version #22 "Thousand Oaks"
my $x = 2; # Single-line comment.
#`(
Comments beginning with a backtick and one or more
opening bracketing characters are embedded comments.
They can span more than one line…
)
my $y = #`{ …or only part of a line. } 3;
#`{{
Using more than one bracketing character lets you include
an unmatched close bracket, like this: }
}}
#`⁅ Synopsis 2: "Bracketing characters are defined as any
Unicode characters with either bidirectional mirrorings or
Ps/Pe/Pi/Pf properties." ⁆
=begin comment
Pod is the successor to Perl 5's POD. This is the simplest way
to use it for multi-line comments. For more about Pod, see
Synopsis 26:
http://perlcabal.org/syn/S26.html
=end comment
[edit] PHP
Single line comment:
# this is commented
// this is commented
These may also be at the end of a line:
$var = 1; # this is the comment part
$var = 1; // this is the comment part
Basic syntax for multi-line comments:
/*
Here are my comments
this is multi-line
*/
Note that; it is more common to see phpDocumentor styled multi-lined comments:
/**
* phpdoc Comments
* @todo this is a todo stub
*/
[edit] PicoLisp
# The rest of the line is ignored
#{
This is a
multiline comment
}#
NIL
Immediately stop reading this file. Because all text in the input file following
a top-level 'NIL' is ignored.
This is typically used conditionally, with a read-macro expression like
`*Dbg
so that this text is only read if in debugging mode.
[edit] Pike
// This is a comment.
/* This is a
multi
line
comment */
int e = 3; // end-of-statement comment.
[edit] plainTeX
The default raw/bare TeX assigns the category code 14 (comment character) to the character %, and plainTeX, as also LaTeX (see here Comments in LaTeX, does not change it; so the % starts a to-end-of-line comment in many TeX macro packages.
% this is a comment
This is not.
The final newline character is eaten and since it normally behaves like a space, the comment can be used to hide the newline:
\def\firstpart{understand}
\def\secondpart{able}
\def\complete{\firstpart%
\secondpart}
\complete
Outputs understandable; without % it would output understand able.
[edit] PL/I
/* This is a comment. */
[edit] PL/SQL
Single line comment:
--this is a single line comment
Multiline comment:
/*
this is a multiline
comment
*/
End of line comment:
v_var NUMBER; --this is an end of line comment
[edit] Pop11
Pop11 has two kinds of comments: endline and C-like. Endline comment begins with tree consecutive semicolons and ends at the end of line:
;;; This is a comment
C-like comments may be multiline:
/* First line
Second line */
C-like comments (unlike C) may be nested:
/* This is a comment /* containing nested comment */ */
One can also use conditional compilation to comment out sections of code
#_IF false
some code
#_ENDIF
however, commented out part must consist of valid Pop11 tokens. In particular, C-like comments must balance and strings must be terminated. The following is an error:
#_IF false
This w'ont work
#_ENDIF
because apostrophe starts an unterminated string.
[edit] PostScript
%This is a legal comment in PostScript
[edit] PowerShell
# single-line comment
Works with: PowerShell version 2
<# multi-line
comment #>
[edit] Prolog
% this is a single-line comment that extends to the end of the line
/* This is a
multi-line comment */
[edit] PureBasic
PureBasic uses the ";" symbol to mark its comments. All text entered after ";" on a line is ignored by the compiler.
;comments come after an unquoted semicolon and last until the end of the line
foo = 5 ;This is a comment
c$ = ";This is not a comment" ;This is also a comment
[edit] Python
Python uses the "#" symbol to mark it's comments. After placing a "#", everything to the right of it in that line will be ignored.
# This is a comment foo = 5 # You can also append comments to statements
Certain 'do nothing' expressions resemble comments
"""Un-assigned strings in triple-quotes might be used
as multi-line comments
"""
'''
"triple quoted strings" can be delimited by either 'single' or "double" quote marks; and they can contain mixtures
of other quote marks without any need to \escape\ them using any special characters. They also may span multiple
lines without special escape characters.
'''
Note that strings inserted among program statements in Python are treated as expressions (which, in void context, do nothing). Thus it's possible to "comment out" a section of code by simply wrapping the lines in "triple quotes" (three consecutive instances of quotation marks, or of apostrophes, and terminated with a matching set of the same).
[edit] Documentation Strings
Python makes pervasive use of strings which immediately follow class and function definition statements, and those which appear as the first non-blank, non-comment line in any module or program file. These are called "documentation" strings or "docstrings" for short; and they are automatically associated with the __doc__ attribute of the class, function, or module objects in which they are defined. Thus a fragment of code such as:
#!/usr/bin/env python
# Example of using doc strings
"""My Doc-string example"""
class Foo:
'''Some documentation for the Foo class'''
def __init__(self):
"Foo's initialization method's documentation"
def bar():
"""documentation for the bar function"""
if __name__ == "__main__":
print (__doc__)
print (Foo.__doc__)
print (Foo.__init__.__doc__)
print (bar.__doc__)
... would print each of the various documentation strings in this example. (In this particular example it would print two copies of the first doc string which because __doc__ in the "current" name space is the same as __main__.__doc__ when our program is running as a script). If some other script were to import this file (under the name "example" perhaps) then "My Doc-string example" would be the value of example.__doc__
Python "docstrings" are used by a number of tools to automatically generate documentation (for most of the Python standard libraries, classes, functions, etc, as well as for user programs which define docstrings). They are also used by tools such as doctest to automatically derive test suites from properly formatted examples of class instantiations, function invocations and other usage samples. The standard pydoc utility can search through Python source trees generating documentation and can function as a local web server allowing a programmer to browse "live" hyperlinked documentation of their project.
(As noted above extraneous strings interspersed throughout a Python source file can be used as comments, though this is rarely done in practice; only those strings which lexically follow the definition of a class, function, module or package are assigned to __doc__ attributes in their respective name spaces).
[edit] R
# end of line comment
[edit] Raven
# this is a comment
[edit] REBOL
; This is a line comment.
{ Multi-line strings can
be used as comments
if you like }
Functions have special commenting options which make them self documenting:
plus2: func [
"Adds two to a number."
n [number!] "The number to increase."
][
n + 2
]
If you say "help plus2" at REBOL's REPL, you'll get this help information:
USAGE:
PLUS2 n
DESCRIPTION:
Adds two to a number.
PLUS2 is a function value.
ARGUMENTS:
n -- The number to increase. (Type: number)
[edit] REXX
/* everything
between this
is a comment.
Nested comments
are recognized! */
hour = 12 /* high noon */
Works with: oorexx
-- this type of comment works only in ooREXX
hour = 0 -- midnight
[edit] Ruby
x = "code" # I am a comment
=begin hello
I a POD documentation comment like Perl
=end puts "code"
[edit] Sather
-- a single line comment
[edit] Scala
// A single line comment
/* A multi-line
comment */
[edit] Scheme
; Basically the same as Common Lisp
[edit] Seed7
# A single line comment
(* A multi-line
comment *)
(* In Seed7,
(* comments can be nested. *) *)
[edit] Slate
"basically the same as smalltalk"
[edit] Smalltalk
"Comments traditionally are in double quotes."
"Multiline comments are also supported.
Comments are saved as metadata along with the source to a method.
A comment just after a method signature is often given to explain the
usage of the method. The class browser may display such comments
specially."
[edit] SNOBOL4
* An asterisk in column 1 is the standard Snobol comment
* mechanism, marking the entire line as a comment. There
* are no block or multiline comments.
* Comments may begin at
* any position on the line.
- A hyphen in column 1 begins a control statement.
- Unrecognized control statements are ignored and
- may also mark comment lines. Not recommended.
;* The semicolon statement separator
output = 'FOO' ;* begins a new statement. This idiom
output = 'BAR' ;* simulates an asterisk in the first
;* column, allowing end of line comments.
END
Any text after the required END label is ignored.
[edit] SNUSP
As with Brainfuck and Befunge, any character that is not part of the language is ignored and can be used as commentary, and you can add comments anywhere the instruction pointer is not expected to traverse. Reserved characters are:
- Core: + - > < , . ? ! / \ $ #
- Modular: @ #
- Bloated: : ; & %
As a matter of convention, the characters '=' and '|' are used for spacing to indicate horizontal and vertical flow of control, respectively.
[edit] Standard ML
(* This a comment
(* containing nested comment *)
*)
[edit] Tcl
Tcl follows the usual scripting language rules: a comment starts at a "#" symbol, which can be placed after a command if that is terminated by a semicolon:
# comment on a line by itself. The next is a command by itself:
set var1 $value1
set var2 $value2 ; # comment that follows a line of code
The reason for the need for a semi-colon on a trailing comment is this:
"If a hash character (“#”) appears at a point where Tcl is expecting the first character of the first word of a command, then the hash character and the characters that follow it, up through the next newline, are treated as a comment and ignored. The comment character only has significance when it appears at the beginning of a command." (from the Tcl man page -- emphasis mine)
The "#" symbol has no special meaning if it is not where a command would appear -- it's just data. (Syntax highlighters often get this wrong.)
set aList {foo}
lappend aList # bar
puts $aList ;# ==> prints "foo # bar"
puts [llength $aList] ;# ==> 3
TCL has no native multi-line comment format. However, in most circumstances, a multi-line comment can be faked by wrapping it within a block that will never be executed:
if 0 {
Comments...
}
[edit] TI-83 BASIC
There is no 'proper' way of adding comments in TI-BASIC, however there are ways to add text to a program that will be ignored by the calculator.
One common approach is to put the comment in a string which is not stored anywhere:
:"THIS IS A COMMENT
However this will change the Ans variable.
This approach, while messier, does not affect the Ans variable:
:If 0
:THIS IS A COMMENT
[edit] TI-89 BASIC
© This is a comment. Everything from © to the end of the line is ignored.
[edit] Toka
There are two ways to add comments in Toka. For full lines, or at the end of a line, the shebang is normally used:
#! Everything on this line (after the shebang to the left) will be ignored.
The shebang comments can not be used inside of functions.
In addition, Toka also accepts parenthetical comments. These are enclosed in parenthesis, and are often used for stack comments or comments inside functions.
[ ( a b -- c )
... ] is myword
In addition, parenthetical comments can span multiple lines.
( This is a
simple, multi-line
comment )
Since comments are provided by actual functions, the comment function must be whitespace delimited, just as with all other functions in Toka.
A final way to include text in a file is to mark a false ending with end.
... code ....
end.
Nothing following the end. will be evaluated by Toka.
[edit] Unlambda
Unlambda comments start with # and extend to the end of the line:
# this is a comment.
Note that comments don't need to start at the beginning of a line, e.g.
` # apply .a # output "a" i # identity
is equivalent to
`.ai
[edit] Ursala
There are lots of ways to have comments in Ursala. Here are the conventional ones.
# this is single line a comment
# this is a\
continued comment
(# this is a
multi-line comment #)
(# comments in (# this form #) can (#
be (# arbitrarily #) #) nested #)
---- this is also a comment\
and can be continued
###
The whole rest of the file after three hashes
is a comment.
[edit] Commenting out code
There are also ways to comment out sections of code during testing. An individual item of a syntactically correct list or aggregate is commented out like this.
x = <1,## 2,3>
The 2 is ignored but 1 and 3 aren't. This also works with nested aggregates and multiple lines.
a =
<
'to',
## <
'be',
'or'>,
'not',
'to',
## 'be'>
A syntactically correct declaration can be commented out like this.
foo = 1
##
bar = 2
baz = 3
As far as the compiler is concerned, bar is not defined, but foo and baz are. It wouldn't matter if bar took multiple lines.
[edit] Comments in compiled files
The compiler can be directed to embed comments in executable files and libraries it generates without affecting their semantics.
#comment -[
I document the source text but will also be embedded in
the output library or executable file.]-
#comment gpl'3'
The latter comment puts the standard GPL license notification in the output file.
[edit] Comments as diagnostics
A function f annotated with a crash dump wrapper expressed like this during debugging
my_input_type%C f
is equivalent to just f when changed to this in the production code.
my_input_type%Ck f
[edit] Comments as hooks
Compiling with the --depend command line option makes the compiler only scan for the #depend'ed expressions and send them to standard output.
#depend <this,expression> is (parsed)* but {
otherwise,
ignored}
This way, scripts and source management tools can have information passed to them from the programmer by running the compiler instead of re-implementing their own parsers.
[edit] Verilog
// Single line commment.
/*
Multiple
line
comment.
*/
[edit] Visual Basic
In addition to the methods mentioned in BASIC above, it is also somewhat common to effectively comment out code by including the unwanted code inside an #If 0 ... #End If block. (This works because 0 evaluates to False in VB.) Note, however, that the IDE will complain about actual comments inside an #If 0 block unless it's also commented normally (i.e., using Rem or ').
'comment
Rem comment
#If 0
Technically not a comment; the compiler may or may not ignore this, but the
IDE won't. Note the somewhat odd formatting seen here; the IDE will likely
just mark the entire line(s) as errors.
#End If
[edit] Visual Basic .NET
Visual Basic .NET uses the "'" symbol or "REM" to mark it's comments. After placing a "'", or "REM", everything in that line will be ignored.
' This is a comment
REM This is also a comment
Dim comment as string ' You can also append comments to statements
Dim comment2 as string REM You can append comments to statements
[edit] Vorpal
# single line comment
[edit] XQuery
(: This is a XQuery comment :)
[edit] XSLT
<!-- Comment syntax is borrowed from XML and HTML. -->

