Re: New operators?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: New operators?
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: 2007年4月11日 18:30:56 -0300
> Or maybe an alias operator that allows you to create temporary local names
> for variables:-
>
> ?x = longVarName?x + 1 -- read longVarName?a as "longVarName which we
> will call x"
Aliases in the form
alias x=longVarName, y=AnotherLongVarName
are trivial to implement with token filters (though respecting scopes will
need some real work).
--lhf