Re: Lua C Require problem
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Lua C Require problem
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: 2007年12月19日 14:32:24 -0200
> And running this gives what you might expect: Parsing Error for file 'hello.lua'
You should print the error message sent by Lua:
puts(lua_tostring(L,-1));
This will tell you exactly what is wrong.