This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/examples/miscellaneous/SCRIPT.txt
pmoura 4569fca292 Logtalk 2.29.5 files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1858 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2007-03-28 22:44:31 +00:00

37 lines
769 B
Plaintext

=================================================================
Logtalk - Object oriented extension to Prolog
Release 2.29.5
Copyright (c) 1998-2007 Paulo Moura. All Rights Reserved.
=================================================================
% start by loading the example and the required library files:
| ?- logtalk_load(miscellaneous(loader)).
...
% towers of hanoi using three disks:
| ?- hanoi::run(3).
Move a disk from left to right.
Move a disk from left to middle.
Move a disk from right to middle.
Move a disk from left to right.
Move a disk from middle to left.
Move a disk from middle to right.
Move a disk from left to right.
yes
% placing eight queens in a chess table:
| ?- queens::queens(8).
[1-5,2-7,3-2,4-6,5-3,6-1,7-4,8-8]
yes