Another update from ingydotnet^djgoku

This commit is contained in:
Ingy döt Net 2015-11-18 06:14:39 +00:00
parent 91df62d461
commit 948b86eafa
7604 changed files with 108452 additions and 22726 deletions

View file

@ -1,17 +1,14 @@
/*──────────────── using literal abuttal. */
/*──────────────── this won't work as the first */
/*──────────────── variable name is X or B */
zz='llo world!'
zz='he'zz
zz= 'llo world!' /*─────────────── using literal abuttal.────────────*/
zz= 'he'zz /*This won't work if the variable name is X or B */
say zz
/*──────────────── using literal concatenation. */
gg = "llo world!"
gg = "llo world!" /*─────────────── using literal concatenation.──────*/
gg = 'he' || gg
say gg
/*──────────────── using variable concatenation.*/
aString = 'llo world!'
bString = "he"
aString = bString || aString
aString= 'llo world!' /*─────────────── using variable concatenation.─────*/
bString= "he"
aString= bString || aString
say aString