diff options
Diffstat (limited to 'language/include.rst')
-rw-r--r-- | language/include.rst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/language/include.rst b/language/include.rst index cc2964a..4667a49 100644 --- a/language/include.rst +++ b/language/include.rst @@ -3,5 +3,10 @@ Including Headers .. crowbar:element:: IncludeStatement <- 'include' string-literal ';' + Compile-time Behavior: + When encountering this statement at the beginning of a file, the compiler should interpret the string literal as a relative file path, look up the corresponding file in an implementation-defined way, and load the definitions from the given :crowbar:ref:`HeaderFile`. - This statement has no runtime effect. + + Runtime Behavior: + + This statement has no runtime behavior. |