Update paths and actually add files
This commit is contained in:
8
notes-and-examples/2026.01.28/object_reference_sample.py
Normal file
8
notes-and-examples/2026.01.28/object_reference_sample.py
Normal file
@@ -0,0 +1,8 @@
|
||||
class Sample:
|
||||
other_samples = []
|
||||
value = 0
|
||||
|
||||
sample = Sample()
|
||||
other_sample = sample
|
||||
sample.value = 20
|
||||
print(other_sample.value)
|
||||
Reference in New Issue
Block a user