/* Copyright (C) Wolfgang Menzel, Universität Hamburg, 2003-06-27 based on the SWI-Prolog demo program demo_xpce.pl This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ :- module(tutor_server,[server/1]). :- use_module(library('http/xpce_httpd')). :- use_module(tutor_helper). server(Port) :- http_server(reply, [port(Port)]).