Project

General

Profile

$+ » History » Revision 2

Revision 1 (Per Amundsen, 08/14/2015 02:08 PM) → Revision 2/3 (Per Amundsen, 05/09/2017 08:42 PM)

_Added in 1.9.0_ 

 *$+* 

 Identifiers must be followed/trailed by white spaces, $+ can be used Used to combine two items to remove any spaces between them. 


 

 *Example* 

 <pre> 
 ; Combines your nick twice without any spaces. 
 //echo -ag $me $+ $me 
 </pre> 

 ----------------------------------------------------------------------------- 

 *$+(n1,...,nN)* 

 Combines all of the specified parameters, the same as using [[$+]] in between each item. 

 *Parameters* 

 n1,...,nN - Any number of items to combine. 

 *Example* 

 <pre> 
 ; Combine your nick multiple times without any spaces. 
 //echo -ag $+($me,$me,$me,$me,$me,$me,$me) 
 </pre>