lua-users home
lua-l archive

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


> function whatever()
>  if conditional1 then
>    if conditional 2 then
>      if conditional3 then
>        return 2
>      else
>        return 4
>      end
>    end
>  end
>  return 'whatever'
> end

what do you want exactly? continuing the function after return does no
help for your code IMO.