Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1 @@
-- All Ada comments begin with "--" and extend to the end of the line

View 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.

View file

@ -0,0 +1,3 @@
[ This is a header comment ]
++++++++[->++++++++<]>.

View file

@ -0,0 +1 @@
* an asterisk in 7th column comments the line out

View file

@ -0,0 +1 @@
D DISPLAY "Debug"

View file

@ -0,0 +1 @@
*> This comment syntax was defined (with free format code) in COBOL 2002.

View file

@ -0,0 +1 @@
>>D DISPLAY "Debug"

View file

@ -0,0 +1,3 @@
NOTE this paragraph is
commented out and ignored
.

View 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.

View file

@ -0,0 +1,4 @@
// single line
/* multi
line */

View 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.

View file

@ -0,0 +1 @@
; This is a comment

View file

@ -0,0 +1,2 @@
"This is effectively a comment,
if used at a place where the result is ignored"

View file

@ -0,0 +1,3 @@
(defun subtract-second-from-first (x y)
"This function subtracts its second argument from its first argument."
(- y x))

View file

@ -0,0 +1 @@
-- This is a comment

View file

@ -0,0 +1,3 @@
/*
This is a comment
*/

View file

@ -0,0 +1 @@
// comments start with "//" and continue to the end of the line.

View file

@ -0,0 +1,7 @@
// Single line commment.
/*
Multiple
line
comment.
*/

View file

@ -0,0 +1 @@
# single-line comment

View file

@ -0,0 +1,2 @@
<# multi-line
comment #>

View file

@ -0,0 +1,5 @@
; This is a line comment.
{ Multi-line strings can
be used as comments
if you like }

View file

@ -0,0 +1,6 @@
plus2: func [
"Adds two to a number."
n [number!] "The number to increase."
][
n + 2
]

View file

@ -0,0 +1 @@
# This is a comment

View file

@ -0,0 +1 @@
' This is a VBScript comment

View file

@ -0,0 +1 @@
-- Single line commment in VHDL