Aer/include
Rafal Kupiec b5fe36c14b
The build was successful. Details
There is no need for include_once() and require_once()
Aer is object-oriented language and the code it includes is executed in the global scope. Global scope can contain only classes and namespaces and they cannot be re-declared. Thus every file can be included just once. We can
leave this to programmer, or take care about it on interpreter side. With this commit, include() and require() builtin functions allows to load file just once. Thanks to that, there is no need for include_once() and
require_once(). Done in scope of #30.
2018-08-16 16:12:29 +02:00
..
compiler.h Compile global scope independently, fixes #40. 2018-08-16 11:15:03 +02:00
ph7.h Compile Aer code or chunk of code. 2018-08-16 09:34:18 +02:00
ph7int.h There is no need for include_once() and require_once() 2018-08-16 16:12:29 +02:00