diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-07-03 16:09:10 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-07-03 16:09:10 -0400 |
commit | 119950ebde3c9f096d1866ba6448d6bd9b22d063 (patch) | |
tree | 35e6bb7a2507910ac784356baf25c2412b6959b6 /docs/00.html | |
parent | b25f392b221cea498ea7695f68828909734b51cd (diff) |
removed ability to evaluate a function before it is declared at compile time; that was causing too many problems
Diffstat (limited to 'docs/00.html')
-rw-r--r-- | docs/00.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/00.html b/docs/00.html index b32be13..7609f7b 100644 --- a/docs/00.html +++ b/docs/00.html @@ -66,6 +66,6 @@ x ::= 5+3; y :: float = 5.123; </c></p> -<p>Here, "constant" means constant at compile time, not read-only as it does in C. One interesting thing about toc is that normal functions can run at compile time, so pretty much any expression is a valid initializer for a constant, e.g. doing <c>x ::= some_function();</c> runs <c>some_function</c> at compile time, not at run time.</p> +<p>Here, "constant" means constant at compile time, not read-only as it does in C.</p> </body> </html> |