Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
1
Task/Comments/Ada/comments.adb
Normal file
1
Task/Comments/Ada/comments.adb
Normal file
|
|
@ -0,0 +1 @@
|
|||
-- All Ada comments begin with "--" and extend to the end of the line
|
||||
5
Task/Comments/AutoIt/comments.au3
Normal file
5
Task/Comments/AutoIt/comments.au3
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#cs
|
||||
Everything between the cs and the ce is commented.
|
||||
Commented code is not used by the computer.
|
||||
#ce
|
||||
;individual lines after a semicolon are commented.
|
||||
3
Task/Comments/Brainf---/comments-2.bf
Normal file
3
Task/Comments/Brainf---/comments-2.bf
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[ This is a header comment ]
|
||||
|
||||
++++++++[->++++++++<]>.
|
||||
1
Task/Comments/COBOL/comments-1.cob
Normal file
1
Task/Comments/COBOL/comments-1.cob
Normal file
|
|
@ -0,0 +1 @@
|
|||
* an asterisk in 7th column comments the line out
|
||||
1
Task/Comments/COBOL/comments-2.cob
Normal file
1
Task/Comments/COBOL/comments-2.cob
Normal file
|
|
@ -0,0 +1 @@
|
|||
D DISPLAY "Debug"
|
||||
1
Task/Comments/COBOL/comments-3.cob
Normal file
1
Task/Comments/COBOL/comments-3.cob
Normal file
|
|
@ -0,0 +1 @@
|
|||
*> This comment syntax was defined (with free format code) in COBOL 2002.
|
||||
1
Task/Comments/COBOL/comments-4.cob
Normal file
1
Task/Comments/COBOL/comments-4.cob
Normal file
|
|
@ -0,0 +1 @@
|
|||
>>D DISPLAY "Debug"
|
||||
3
Task/Comments/COBOL/comments-5.cob
Normal file
3
Task/Comments/COBOL/comments-5.cob
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
NOTE this paragraph is
|
||||
commented out and ignored
|
||||
.
|
||||
11
Task/Comments/COBOL/comments-6.cob
Normal file
11
Task/Comments/COBOL/comments-6.cob
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
IDENTIFICATION DIVISION.
|
||||
PROGRAM-ID. program.
|
||||
|
||||
AUTHOR. Rest of line ignored.
|
||||
REMARKS. Rest of line ignored.
|
||||
REMARKS. More remarks.
|
||||
SECURITY. line ignored.
|
||||
INSTALLATION. line ignored.
|
||||
DATE-WRITTEN. same, human readable dates are allowed for instance
|
||||
DATE-COMPILED. same.
|
||||
DATE-MODIFIED. this one is handy when auto-stamped by an editor.
|
||||
4
Task/Comments/Chapel/comments.chpl
Normal file
4
Task/Comments/Chapel/comments.chpl
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
// single line
|
||||
|
||||
/* multi
|
||||
line */
|
||||
19
Task/Comments/Dragonstone/comments.dragonstone
Normal file
19
Task/Comments/Dragonstone/comments.dragonstone
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#[
|
||||
Multi-Line Comment.
|
||||
]#
|
||||
|
||||
#[
|
||||
Nested Multi-Line Comment.
|
||||
#[
|
||||
Inner comment.
|
||||
#[
|
||||
It can go deep.
|
||||
]#
|
||||
]#
|
||||
Outer comment.
|
||||
]#
|
||||
|
||||
# Single Line Comment
|
||||
|
||||
#[ Multi-Line Comment on line ]# message = "Hello!" #[ Inside or Outside ]#
|
||||
echo message # Another Trailing Comment.
|
||||
1
Task/Comments/Emacs-Lisp/comments-1.el
Normal file
1
Task/Comments/Emacs-Lisp/comments-1.el
Normal file
|
|
@ -0,0 +1 @@
|
|||
; This is a comment
|
||||
2
Task/Comments/Emacs-Lisp/comments-2.el
Normal file
2
Task/Comments/Emacs-Lisp/comments-2.el
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
"This is effectively a comment,
|
||||
if used at a place where the result is ignored"
|
||||
3
Task/Comments/Emacs-Lisp/comments-3.el
Normal file
3
Task/Comments/Emacs-Lisp/comments-3.el
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(defun subtract-second-from-first (x y)
|
||||
"This function subtracts its second argument from its first argument."
|
||||
(- y x))
|
||||
1
Task/Comments/Euphoria/comments-1.eu
Normal file
1
Task/Comments/Euphoria/comments-1.eu
Normal file
|
|
@ -0,0 +1 @@
|
|||
-- This is a comment
|
||||
3
Task/Comments/Euphoria/comments-2.eu
Normal file
3
Task/Comments/Euphoria/comments-2.eu
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
/*
|
||||
This is a comment
|
||||
*/
|
||||
1
Task/Comments/Gleam/comments.gleam
Normal file
1
Task/Comments/Gleam/comments.gleam
Normal file
|
|
@ -0,0 +1 @@
|
|||
// comments start with "//" and continue to the end of the line.
|
||||
7
Task/Comments/Haxe/comments.hx
Normal file
7
Task/Comments/Haxe/comments.hx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// Single line commment.
|
||||
|
||||
/*
|
||||
Multiple
|
||||
line
|
||||
comment.
|
||||
*/
|
||||
1
Task/Comments/PowerShell/comments-1.ps1
Normal file
1
Task/Comments/PowerShell/comments-1.ps1
Normal file
|
|
@ -0,0 +1 @@
|
|||
# single-line comment
|
||||
2
Task/Comments/PowerShell/comments-2.ps1
Normal file
2
Task/Comments/PowerShell/comments-2.ps1
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
<# multi-line
|
||||
comment #>
|
||||
5
Task/Comments/Rebol/comments-1.rebol
Normal file
5
Task/Comments/Rebol/comments-1.rebol
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
; This is a line comment.
|
||||
|
||||
{ Multi-line strings can
|
||||
be used as comments
|
||||
if you like }
|
||||
6
Task/Comments/Rebol/comments-2.rebol
Normal file
6
Task/Comments/Rebol/comments-2.rebol
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
plus2: func [
|
||||
"Adds two to a number."
|
||||
n [number!] "The number to increase."
|
||||
][
|
||||
n + 2
|
||||
]
|
||||
1
Task/Comments/Uiua/comments.uiua
Normal file
1
Task/Comments/Uiua/comments.uiua
Normal file
|
|
@ -0,0 +1 @@
|
|||
# This is a comment
|
||||
1
Task/Comments/VBScript/comments.vbs
Normal file
1
Task/Comments/VBScript/comments.vbs
Normal file
|
|
@ -0,0 +1 @@
|
|||
' This is a VBScript comment
|
||||
1
Task/Comments/VHDL/comments.vhd
Normal file
1
Task/Comments/VHDL/comments.vhd
Normal file
|
|
@ -0,0 +1 @@
|
|||
-- Single line commment in VHDL
|
||||
Loading…
Add table
Add a link
Reference in a new issue