Re: ! and ->
- From: ZeD <vito.detullio@xxxxxxxxx>
- Date: Tue, 13 Jun 2006 12:48:54 GMT
Bart Demoen wrote:
Suppose the clause of p() where
p() :-
a(),
( if() ->
then()
;
else()
),
b().
How would you transform that ?
in the same way:
p():-
a(),
if(), !,
then(),
b().
p():-
a(),
else(),
b().
the real "problems" come when you have nested "->", but just because you
must repeat yourself.
--
Under construction
.
- Follow-Ups:
- Re: ! and ->
- From: Bart Demoen
- Re: ! and ->
- References:
- Re: ! and ->
- From: Bart Demoen
- Re: ! and ->
- From: ZeD
- Re: ! and ->
- From: Bart Demoen
- Re: ! and ->
- Prev by Date: Re: ! and ->
- Next by Date: Performing key validation inside a "Web of trust"
- Previous by thread: Re: ! and ->
- Next by thread: Re: ! and ->
- Index(es):