dofile alternative?

Hi, I’m learning corona, I’m accustomed to keeping my projects neat and clean, dividing them into multiple files, I’m not an expert in lua, I used it a very few times, and I remember doing this:

dofile(“x.lua”)

to include the code of another lua script inside my main one, reading here:

http://developer.anscamobile.com/content/changes-lua

I see that this is not supported in corona, how can I achieve the same thing?
Thank you very much for your time [import]uid: 118481 topic_id: 20493 reply_id: 320493[/import]

In normal Lua:

dofile("exit.lua") dofile("folder/enter.lua") In Corona:

require("exit")  
require("folder.enter")  

[import]uid: 100558 topic_id: 20493 reply_id: 80386[/import]