From 44758bfed34567344ce67dcae8abba2703bb6cde Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sun, 8 Feb 2026 01:01:03 -0500 Subject: [PATCH] xo-interpreter2 stack: work on VSM for apply -> closure action [WIP] --- include/xo/object2/Array.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/xo/object2/Array.hpp diff --git a/include/xo/object2/Array.hpp b/include/xo/object2/Array.hpp new file mode 100644 index 0000000..12c6eaa --- /dev/null +++ b/include/xo/object2/Array.hpp @@ -0,0 +1,14 @@ +/** @file Array.hpp + * + * @author Roland Conybeare, Feb 2026 + **/ + +#pragma once + +#include "DArray.hpp" +#include "array/ISequence_DArray.hpp" +#include "array/IGCObject_DArray.hpp" +#include "array/IPrintable_DArray.hpp" + + +/* end Array.hpp */