i know if i have something like this
Code:
if ($gettok($read(%file,%line)),2-,32) == asd) {
  echo -a $ifmatch
}
 

use echo -a $ifmatch is faster than use echo -a $gettok($read(%file,%line)),2-,32) but if i have
Code:
if (%var) {
  echo -a $ifmatch
}
 

is faster the $ifmatch or the %var? the $ifmatch is a function that returns the value of a var? so echo -a $ifmatch is slower than echo -a %var?