|
|
||
|
> Can someone point out what i'm missing that is obviously wrong here? I'm
> using 4.1 -
>
> static int testfunction ( lua_State * L )
> {
> lua_pushnumber( L, 99 );
> lua_pushstring( L, "hello" );
> return 0;
should be:
return 2;
> }
Regards,
Peter