Update paths and actually add files

This commit is contained in:
2026-02-08 17:06:29 -08:00
parent a4ca6aabcd
commit c2671c5021
7 changed files with 132 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)