Lines Matching full:effects
59 functions with side effects that modify internal state or make other changes
61 effects at all are called **purely functional**. Avoiding side effects means
67 side effects. Printing to the screen or writing to a disk file are side
68 effects, for example. For example, in Python a ``print`` statement or a
70 side effects of sending some text to the screen or pausing execution for a
77 local variables, but won't modify global variables or have other side effects.
89 avoid objects and side effects? There are theoretical and practical advantages