[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: require relative to file which is calling
- From: Valerio Schiavoni <valerio.schiavoni@...>
- Date: Fri, 21 Jan 2011 18:04:23 +0100
hello Gustavo,
2011/1/21 Gustavo de Sá Carvalho Honorato <gustavohonorato@gmail.com>:
> how can I use require function passing the file path relative to the file
> that is calling the require function, as we do with #include in C?
if you have the following structure:
a.lua
libs/b.lua
in a.lua you can do:
require"libs/b"
At least it works for me..