Update paths and actually add files

This commit is contained in:
2026-02-08 17:06:29 -08:00
parent e8ebecbd3e
commit 9d20401d30
8 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class Sample:
other_samples = []
value = 0
sample = Sample()
other_sample = sample
sample.value = 20
print(other_sample.value)