Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,61 @@
/*REXX program demonstrates a method to use "here" documents in REXX. */
parse arg doc . /*"here" name is case sensitive. */
do j=1 for sourceline()
if sourceline(j)\==''doc then iterate
do !=j+1 to sourceline() while sourceline(!)\=='.'
say sourceline(!)
end /*!*/
exit /*stick a fork in it, we're done.*/
end /*j*/
say doc '"here" document not found.'
exit /*stick a fork in it, we're done.*/
/*──────────────────────────────────start of "here" docs──────────────────
rs-232
RS232 Signals and Pinouts
13 12 11 10 9 8 7 6 5 4 3 2 1
Interface between data 25 24 23 22 21 20 19 18 17 16 15 14
terminal equipment (DTE/male)
and data communication equipment
[DCE/female] employing serial
binary data interchange. 12secondary carrier detect [SCD] DCE
13secondary clear to send [SCS] DCE
1protective ground [PG, GND] 14secondary transmitted data [STD] DTE
2transmitted data [TD] DTE 15transmit clock [TC] DCE
3received data [RD] DCE 16secondary received data [SRD] DCE
4request to send [RTS] DTE 17receiver clock [RC] DCE
5clear to send [CTS] DCE 18unassigned
6data set ready [DSR] DCE 19secondary request to send [SRS] DTE
7signal ground [SG] 20data terminal ready [DTR] DTE
(common return) 21signal quality detector [SQD] DCE
8carrier detect [CD] DCE 22ring indicator [RI] DCE
9positive voltage [-] 23data rate select [DRS] DCE/DTE
10negative voltage [-] 24external clock [XTC] DTE
11unassigned 25unassigned
.
can
.
end of "here" docs*/