From 79441128958669b16ce8dfe39a3684069921f604 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Fri, 22 Aug 2025 13:38:47 -0400 Subject: make compile button actually compile --- src/forth/interp.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/forth/interp.rs') diff --git a/src/forth/interp.rs b/src/forth/interp.rs index c6dcb72..b34ed31 100644 --- a/src/forth/interp.rs +++ b/src/forth/interp.rs @@ -66,15 +66,15 @@ pub(super) struct DataStack(pub(super) Vec); pub(super) struct CallStack(pub(super) Vec); #[derive(Clone, Debug)] -pub(super) struct WordList(pub(super) Vec); +pub struct WordList(pub(super) Vec); #[derive(Debug)] pub struct Interp { // todo: don't be pub, probably - pub stack: DataStack, + pub(super) stack: DataStack, callstack: CallStack, // todo: don't be pub - pub wordlist: WordList, + pub(super) wordlist: WordList, ip: InstructionPointer, } -- cgit v1.3