From jan@swi.psy.uva.nl  Thu Feb 10 15:33:36 2000
Received: from gollem.swi.psy.uva.nl (root@gollem [145.18.152.30])
	by swi.psy.uva.nl (8.9.3/8.9.3) with ESMTP id PAA05987;
	Thu, 10 Feb 2000 15:33:36 +0100 (MET)
Received: (from jan@localhost)
	by gollem.swi.psy.uva.nl (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id PAA03482;
	Thu, 10 Feb 2000 15:33:55 +0100
Date: Thu, 10 Feb 2000 15:33:55 +0100
Message-Id: <200002101433.PAA03482@gollem.swi.psy.uva.nl>
From: Jan Wielemaker <jan@swi.psy.uva.nl>
Subject: Re: random
To: "H. Chad Lane" <hcl@cs.pitt.edu>, prolog@swi.psy.uva.nl
In-Reply-To: H. Chad Lane's message of Thu, 10 Feb 2000 09:24:01 -0500
Phone: +31 - 20 - 525 6121

> The help screen for random/1 comes up without a problem, however it is
> not recognized when I try to use it (see below).  Any suggestions?
> 
> ?- help(random).
> 
> Yes
> ?- random(5).
> [WARNING: Undefined predicate: `random/1']
> 
> No
> ?-

random is a function:

	?- A is random(5)
	
	A = 3

	Regards --- Jan

