From d8447d025e4d2d2808e18cb05d9e8607c4993dc3 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Thu, 5 Feb 2026 10:44:11 -0500 Subject: [PATCH] xo-interpreter2 stack: work on variable references [WIP] --- include/xo/object2/Boolean.hpp | 12 ++++++++++++ include/xo/object2/String.hpp | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 include/xo/object2/Boolean.hpp diff --git a/include/xo/object2/Boolean.hpp b/include/xo/object2/Boolean.hpp new file mode 100644 index 0000000..a246ffc --- /dev/null +++ b/include/xo/object2/Boolean.hpp @@ -0,0 +1,12 @@ +/** @file Boolean.hpp + * + * @author Roland Conybeare, Feb 2026 + **/ + +#pragma once + +#include "DBoolean.hpp" +#include "boolean/IGCObject_DBoolean.hpp" +#include "boolean/IPrintable_DBoolean.hpp" + +/* end Boolean.hpp */ diff --git a/include/xo/object2/String.hpp b/include/xo/object2/String.hpp index b2e6d09..111b04f 100644 --- a/include/xo/object2/String.hpp +++ b/include/xo/object2/String.hpp @@ -1,6 +1,6 @@ /** @file String.hpp * - * @author Roland Conybeare, Feb 22026 + * @author Roland Conybeare, Feb 2026 **/ #pragma once