Deutsch   English   Français   Italiano  
<d94e4a1cb4afa3610abb3ea394dbb5f7@www.novabbs.com>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!weretis.net!feeder9.news.weretis.net!news.nk.ca!rocksolid2!i2pn2.org!.POSTED!not-for-mail
From: mhx@iae.nl (mhx)
Newsgroups: comp.lang.forth
Subject: Re: Juggling system-compilation items
Date: Sat, 10 Aug 2024 09:51:51 +0000
Organization: novaBBS
Message-ID: <d94e4a1cb4afa3610abb3ea394dbb5f7@www.novabbs.com>
References: <v957nr$jq4q$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: i2pn2.org;
	logging-data="2079656"; mail-complaints-to="usenet@i2pn2.org";
	posting-account="t0bSWFIQDvYvkkhDiPIIv6byulC6WbSEwXWMJpxc4k0";
User-Agent: Rocksolid Light
X-Spam-Checker-Version: SpamAssassin 4.0.0
X-Rslight-Site: $2y$10$kxdv.18RLGsgnXAuU0dfcOMlbpZQXDFWekniNArfwl0jXOTL/imBK
X-Rslight-Posting-User: 59549e76d0c3560fb37b97f0b9407a8c14054f24
Bytes: 1271
Lines: 17

iForth64 does not have N>R and NR> ( never needed them ).
After pulling them from https://forth-standard.org/standard/tools/ ...

FORTH> 42 const aap  ok
FORTH> words
aap                   const
 ok
FORTH> see aap
Flags: TOKENIZE, ANSI
: aap  42 ;  ok
FORTH> ' aap idis
$013414C0  : aap
$013414CA  push          #42 b#
$013414CC  ;

No problem.

-marcel