From 922a0e6e3145365122714d9d7e4406094e91d41a Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sun, 1 Mar 2026 15:30:58 +0000 Subject: [PATCH] Implement block comments --- prelude.f | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/prelude.f b/prelude.f index 2a98be9..95297b5 100644 --- a/prelude.f +++ b/prelude.f @@ -38,6 +38,18 @@ : RECURSE LATEST @ >CFA , ; IMMEDIATE +\ Block comments (with nesting) + +: ( + BEGIN + KEY DUP + 40 = IF RECURSE THEN + 41 = + UNTIL +; IMMEDIATE + +( ( Take that, C ) ) + \ Peripheral register addresses : TXBUF 0 ;