[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: wrapping functions
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Thu, 17 May 2001 09:41:43 -0300 (EST)
>IMHO, {{f(x)}} is easier and more clearly than {(f(x))} .
But of course they *mean* something different:
function f(x) return 1 end
a={{f(x)}}
b={(f(x))}
print(a[1],b[1])
>>> table: 37a98 1
--lhf