From mc@uga.edu Sun Jan 27 16:44:54 2002
Received: from malibu.cc.uga.edu (malibu.cc.uga.edu [128.192.1.103])
	by swi.psy.uva.nl (8.11.6/8.11.2) with ESMTP id g0RFirL12876
	for <prolog@swi.psy.uva.nl>; Sun, 27 Jan 2002 16:44:53 +0100 (MET)
Received: from archa9.cc.uga.edu (arch9.cc.uga.edu) by malibu.cc.uga.edu (LSMTP for Windows NT v1.1b) with SMTP id <2.00840F1B@malibu.cc.uga.edu>; 27 Jan 2002 10:44:51 -0500
Received: from MINERVA (dsl-64-128-248-185.telocity.com [64.128.248.185])
	by archa9.cc.uga.edu (8.9.1/8.9.1) with ESMTP id KAA100202
	for <prolog@swi.psy.uva.nl>; Sun, 27 Jan 2002 10:44:50 -0500
Message-ID: <000501c1a749$8e238bf0$c901a8c0@MINERVA>
Reply-To: "Michael A. Covington" <mc@arches.uga.edu>
From: "Michael A. Covington" <mc@arches.uga.edu>
To: <prolog@swi.psy.uva.nl>
Date: Sun, 27 Jan 2002 10:44:49 -0500
MIME-Version: 1.0
Content-Type: text/plain;
	charset="Windows-1252"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
Subject: [SWIPL] string/1

Under what conditions does string/1 succeed?  Not any of these... !


?- string("abc").
No

?- string('abc').
No

?- string([a,b,c]).
No

?- string(`abc`).
ERROR: Syntax error: Operator expected
ERROR: string(`
ERROR: ** here **
ERROR: abc`) . 



