I want to add short info in the beginning of the program and i goes like this

message :-
    nl,nl,
    write('  To start type  '), nl,
    write(' ?- solve(Input1,Input2,Output3) '), nl.
:- message.

And this is fine...but i need write(' ?- solve('Input1','Input2',Output3) '), nl so when i run the program it should print To start type ?- solve(' Input1 ' ,' Input2 ' ,Output3 )

thanks in advance :)

link|improve this question

What exactly should it display? Please use four leading spaces to format code snippets. – larsmans Dec 4 '10 at 16:26
feedback

1 Answer

up vote 1 down vote accepted

Escape the quote with backslash; for example, to output a single single-quote:

?- write('\'').
'
true.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.