Submitted by Chris Lohfink (not verified) on Wed, 19/03/2008 - 19:34.
"Parameters are passed by reference, but mutable types (tuples, lists, ints, strings, etc) cannot be changed. For example:"
shouldnt this be
"Parameters are passed by reference, but immutable types (tuples, ints, strings, etc) cannot be changed. For example:"
immutable, not mutable objects cannot be changed, and lists are mutable.
Errata
"Parameters are passed by reference, but mutable types (tuples, lists, ints, strings, etc) cannot be changed. For example:"
shouldnt this be
"Parameters are passed by reference, but immutable types (tuples, ints, strings, etc) cannot be changed. For example:"
immutable, not mutable objects cannot be changed, and lists are mutable.