From b6720dd387b7b1bf4794dae19f70b75ef7539ffa Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Thu, 16 Aug 2018 16:49:53 +0200 Subject: [PATCH] Update page 'Aer v1.0 Specification' --- Aer-v1.0-Specification.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Aer-v1.0-Specification.md b/Aer-v1.0-Specification.md index 0273fe9..27264fe 100644 --- a/Aer-v1.0-Specification.md +++ b/Aer-v1.0-Specification.md @@ -128,7 +128,10 @@ The include() function includes and evaluates the specified file during the exec The require() is identical to include() except upon failure it will also produce a fatal level error. In other words, it will halt the script whereas include() only emits a warning which allowsthe script to continue. -Both of above listed builtin functions can be used only from methods. +Both of above listed builtin functions can be called only from methods. + +### 4.9. Loading modules +AerScript is divided into dynamically loadable modules. Each module can be loaded on runtime by using an __import()__ builtin function. It returns TRUE on success or if the given module is already loaded. FALSE is returned on failure. ## 5. Data Types & Pseudo Types ### 5.1. Boolean Values