Preferences

compressedgas parent
The problem with Python is that it lacks a binding operator. So any assignment to something causes that name to be bound in the local scope unless the name has been declared global or nonlocal. In Scheme this kind of error never occurs because Scheme has binding operators which are used much more than the assignment operator set!. This error does not occur in Pico either because binding with : always produces a local but assignment with := goes up the nested scopes to find the nearest binding to reassign. The fix in Python is to introduce the required global or nonlocal statement at the start of the function.

This item has no comments currently.