From 0da1e5be837f06cd6a37c993dfb9f23a87be0212 Mon Sep 17 00:00:00 2001 From: Ludovic 'Archivist' Lagouardette Date: Sat, 30 Oct 2021 13:17:48 +0200 Subject: [PATCH] Made the register public --- Runtime.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime.cs b/Runtime.cs index adc79a3..4a2e08c 100644 --- a/Runtime.cs +++ b/Runtime.cs @@ -6,7 +6,7 @@ namespace SuperBASIC { class Runtime { - float register; + public float register; internal Library lib; Bytecode code; internal int pc = 0;