Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

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

View file

@ -1,5 +0,0 @@
#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.

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,11 +0,0 @@
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

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,3 +1,4 @@
(* Comments (* can nest *)
(* Modula-2/Modula-3 use the same style of comments *)
(* ...and comments (* can nest *)
and they can span multiple lines.
*)

View file

@ -1,3 +0,0 @@
(* Comments (* can nest *)
and they can span multiple lines.
*)

View file

@ -1,4 +1,4 @@
(* this is a comment *)
(* Oberon-07/Oberon-2 use the same style of comments as Modula-2: this is a comment *)
(*
and this is a
multiline comment

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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