Posted 14 February 2015 - 03:54 PM
As you probably know, calling tostring on a function will return something along the lines of "function: xxxxxx".
Now, take a look at this:
This is really strange, all functions seem to follow the aforementioned rule except for select. Does anyone know what's going on here?
Now, take a look at this:
lua> tostring(select)
select
lua> type(select)
function
This is really strange, all functions seem to follow the aforementioned rule except for select. Does anyone know what's going on here?