Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
/* NetRexx */
|
||||
|
||||
options replace format comments java crossref savelog symbols
|
||||
|
||||
s1 = 'any text value'
|
||||
s2 = 'another string literal'
|
||||
s3 = s1 s2 -- concatenate variables with blank space (note that only one blank space is added)
|
||||
s4 = s1 || s2 -- concatenate variables with abuttal (here, no blank spaces are added)
|
||||
s5 = s1 'another string literal' -- concatenate a variable and a literal with blank space
|
||||
s6 = s1'another string literal' -- concatenate a variable and a literal using abuttal
|
||||
s7 = s1 || 'another string literal' -- ditto
|
||||
|
||||
say 's1:' s1 -- concatenation with blank space is employed here too
|
||||
say 's2:' s2
|
||||
say 's3:' s3
|
||||
say 's4:' s4
|
||||
say 's5:' s5
|
||||
say 's6:' s6
|
||||
say 's7:' s7
|
||||
Loading…
Add table
Add a link
Reference in a new issue