remove _ in names
This commit is contained in:
parent
829db87c40
commit
3af7344581
1270 changed files with 0 additions and 18916 deletions
|
|
@ -1,2 +0,0 @@
|
|||
& read a number 2+ add two .@ display result and exit
|
||||
^- inline comments -^ <-^- other comments
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
/* This is a comment. */
|
||||
/* So is this
|
||||
multiline comment.
|
||||
*/
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
;; This is a comment
|
||||
(defn foo []
|
||||
123) ; also a comment
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
\ The backslash skips everything else on the line
|
||||
( The left paren skips everything up to the next right paren on the same line)
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
C This would be some kind of comment
|
||||
C Usually one would avoid columns 2-6 even in a comment.
|
||||
|
|
@ -1 +0,0 @@
|
|||
/* This is a comment */
|
||||
|
|
@ -1 +0,0 @@
|
|||
% This is a comment
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
-- A single line comment
|
||||
|
||||
--[[A multi-line
|
||||
comment --]]
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
# this is commented
|
||||
// this is commented
|
||||
|
|
@ -1 +0,0 @@
|
|||
# this is commented
|
||||
|
|
@ -1 +0,0 @@
|
|||
% this is a single-line comment that extends to the end of the line
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
"""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.
|
||||
'''
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
/*REXX program to demonstrate various uses and types of comments. */
|
||||
|
||||
/* everything between a "climbstar" and a "starclimb" (exclusive of literals) is
|
||||
a comment.
|
||||
climbstar = /* [slash-asterisk]
|
||||
starclimb = */ [asterisk-slash]
|
||||
|
||||
/* this is a nested comment, by gum! */
|
||||
/*so is this*/
|
||||
|
||||
Also, REXX comments can span multiple records.
|
||||
|
||||
There can be no intervening character between the slash and asterisk (or
|
||||
the asterisk and slash). These two joined characters cannot be separated
|
||||
via a continued line, as in the manner of:
|
||||
|
||||
say 'If I were two─faced,' ,
|
||||
'would I be wearing this one?' ,
|
||||
' --- Abraham Lincoln'
|
||||
|
||||
Here come's the thingy that ends this REXX comment. ───┐
|
||||
│
|
||||
│
|
||||
↓
|
||||
|
||||
*/
|
||||
|
||||
hour = 12 /*high noon */
|
||||
midnight = 00 /*first hour of the day */
|
||||
suits = 1234 /*card suits: ♥ ♦ ♣ ♠ */
|
||||
|
||||
hutchHdr = '/*'
|
||||
hutchEnd = "*/"
|
||||
|
||||
/* the previous two "hutch" assignments aren't
|
||||
the start nor the end of a REXX comment. */
|
||||
|
||||
x=1000000 ** /*¡big power!*/ 1000
|
||||
|
||||
/*not a real good place for a comment (above),
|
||||
but essentially, a REXX comment can be
|
||||
anywhere whitespace is allowed. */
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue