From WikiChip
Editing mirc/evaluation brackets

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 286: Line 286:
 
By now you know evaluation brackets happen before the code itself evaluates, but what about identifiers?
 
By now you know evaluation brackets happen before the code itself evaluates, but what about identifiers?
  
=== Spaced out [ ] ===
+
* If you space out the [ ] inside the identifier, the previous rules apply
 
 
If you space out the [ ] inside the identifier, the previous rules apply
 
  
 
  //echo -a [ $me ] $+( [ $!me ] )
 
  //echo -a [ $me ] $+( [ $!me ] )
Line 316: Line 314:
 
The interpreter is able to handle the commas and braces as part of the code.
 
The interpreter is able to handle the commas and braces as part of the code.
  
=== Non spaced out [ ] ===
+
* If you don't space out the [ ], they will be interpreted when the identifier evaluate each parameter:
If you don't space out the [ ], they will be interpreted when the identifier evaluate each parameter:
 
 
   
 
   
 
  alias changev1to2 if (2) noop
 
  alias changev1to2 if (2) noop
 
  alias changev1to3 echo -a param: $1 | if (3) noop
 
  alias changev1to3 echo -a param: $1 | if (3) noop
 
  alias custom echo -a $1 $3
 
  alias custom echo -a $1 $3
 +
alias
 
  //if (1) noop $changev1to2 $custom($v1,$changev1to3( [ $v1 ] ),[ $v1 ])  
 
  //if (1) noop $changev1to2 $custom($v1,$changev1to3( [ $v1 ] ),[ $v1 ])  
  
Line 330: Line 328:
 
The non spaced [ $v1 ] for the third parameter of $custom, is not resolved for the /noop command, here are the inbetween steps:
 
The non spaced [ $v1 ] for the third parameter of $custom, is not resolved for the /noop command, here are the inbetween steps:
  
* //if evaluates, the condition is '1' so $v1 is set 1
+
- //if evaluates, the condition is '1' so $v1 is set 1
* noop $changev1to2 $custom($v1,$changev1to3( [ $v1 ] ),[ $v1 ]) is the command to be executed for that if
+
- noop $changev1to2 $custom($v1,$changev1to3( [ $v1 ] ),[ $v1 ]) is the command to be executed for that if
* [ ] are processed for the line, the [ $v1 ] for the $changev1to3 alias is resolved, so $v1 is our current value so far: 1
+
- [ ] are processed for the line, the [ $v1 ] for the $changev1to3 alias is resolved, so $v1 is our current value so far: 1
* the line is evaluated, $changev1to2 is evaluated and set $v1 to 2
+
- the line is evaluated, $changev1to2 is evaluated and set $v1 to 2
* $custom is evaluated, its first parameter $v1, is then 2
+
- $custom is evaluated, its first parameter $v1, is then 2
* the second parameter of $custom evaluates "$changev1to3( 1 )" to $null, but it sets $v1 to 3 ('1' is our previous $v1 code, although it's no problemo here, keep in mind: it's double evaluated!)
+
- the second parameter of $custom evaluates "$changev1to3( 1 )" to $null, but it sets $v1 to 3 ('1' is our previous $v1 code, although it's no problemo here, keep in mind: it's double evaluated!)
* the third parameter of $custom evaluates: the [ ] are resolved, $v1 evaluates once (no double evaluation) to 3
+
- the third parameter of $custom evaluates: the [ ] are resolved, $v1 evaluates once (no double evaluation) to 3
  
 
'''Note''': the non spaced [ $v1 ] is not required to get $v1 to be 3, not using [ ] would also correctly make $v1 3 since $changev1to3 was just called, but it illustrates that the [ ] are not resolved at the same stage depending on the spacing.
 
'''Note''': the non spaced [ $v1 ] is not required to get $v1 to be 3, not using [ ] would also correctly make $v1 3 since $changev1to3 was just called, but it illustrates that the [ ] are not resolved at the same stage depending on the spacing.
Line 365: Line 363:
  
 
The code above prints:  
 
The code above prints:  
  [ [ example! ] ] => [ example! ]
+
  example! => [ example! ]
  
 
== Additional Odd Behaviors ==
 
== Additional Odd Behaviors ==
Line 387: Line 385:
 
The above code prints:  
 
The above code prints:  
 
  $!me$me vs. $me$!me
 
  $!me$me vs. $me$!me
 
Or with the previous example:
 
 
//echo -a [ A $+ ] $me $++ $me $++ $me
 
 
Which evaluates the last two $me correctly.
 
  
 
== Commands with Special Behavior ==
 
== Commands with Special Behavior ==
Line 416: Line 408:
 
  :
 
  :
  
Note that unlike the reset of the commands, '''{{mIRC|/unset}}''' cannot set variables in the format of %var {{mIRC|$+}} %var. Evaluation brackets are needed to fix this. see {{mirc|variables#Special behaviors & quirks|here}}
+
Note that unlike the reset of the commands, '''{{mIRC|/unset}}''' cannot set variables in the format of %var {{mIRC|$+}} %var. Evaluation brackets are needed to fix this. see https://en.wikichip.org/wiki/mirc/variables#Special_behaviors_.26_quirks
  
 
== Quirks ==
 
== Quirks ==

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)