lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Tue, 17 Nov 2009 14:14:19 +0200, Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> wrote:

There's also
	repeat until #x
assuming (as you are) that #x does not return false...
But this generates the simplest bytecode:
	do local _ = #x end

Many thanks.