cleanup, docs

This commit is contained in:
root
2026-06-16 23:02:45 +00:00
parent ea08d5f28b
commit b8b56cf3dd
160 changed files with 1076 additions and 511 deletions
+5 -1
View File
@@ -15,4 +15,8 @@ If this node is an internal reference, follows reference links up to the runtime
:example
print("DValue::reference_target example\n");
DValue target;
target.set("data");
DValue ref;
ref.set_reference(&target);
print(ref.reference_target() == &target ? "points to target" : "elsewhere", "\n");