1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-23 21:17:27 +00:00

Documentation improvements

This commit is contained in:
Karol Stasiak
2018-06-09 00:05:17 +02:00
parent 10860f6c5f
commit 775707801c
3 changed files with 31 additions and 2 deletions
+5
View File
@@ -30,4 +30,9 @@ even up to hardware damage.
* violating the [safe reentrancy rules](../lang/reentrancy.md)
* when using modifying operators: calling non-pure functions in the left-hand-side index expression (like in `a[f()] += b`).
Currently, such functions may be evaluated either once or twice. This might be fixed in the future.
* when using modifying operators: calling functions on the right-hand-side index expression than modify any of the variables used on the left hand side
The above list is not exhaustive.