#!/usr/bin/swipl -t main -q -f
/*  $Id$

    Part of SWI-Prolog

    Author:  Jan Wielemaker
    E-mail:  J.Wielemaker@cs.vu.nl
    WWW:     http://www.swi-prolog.org
    Copying: Public domain

    Copyright (C) 1990-2001 SWI, University of Amsterdam. All rights reserved.
*/

:- use_module(demo_body).
:- use_module(library(http/inetd_httpd)).

main :-
	http_server(reply, []).
