-
-
Notifications
You must be signed in to change notification settings - Fork 4
strict
Pannous edited this page Oct 24, 2022
·
1 revision
Strict mode, not unlike javascript's strict mode, enforces all external symbols to be well defined:
x y z := y*y+u
error in strict mode if u is not explicitly defined before as global u
or let u
.
Maybe bad idea to even allow non-strict declarations in the first place?