[REBOL] Re: Prolog for REBOL was: Generating words and global variable space
From: dankelg8::cs::man::ac::uk at: 24-Mar-2001 15:20
Hi Frank, Using separate conexts is a nice idea :) Thanks! Your interpreter works fine for all my basic tests except one: test: { fact(0,1). fact(N,F) :- N > 0, N1 is N-1, fact(N1,F1), F is N * F1. }>> consult test >> pl-interactREBLog>> fact(5,X). *CRASH* Gisle On Fri, 23 Mar 2001, Frank Sievertsen wrote: