#! /bin/sh 
exec /home/clip/bin/ciao-shell-1.10 $0 $* # -*- mode: ciao; -*-

:- include(library(pillow)).

main(_) :- 
	Term = [   cgi_reply, 
		   html( [ 'Hello ', X, '.' ] ) 
	       ],
	p(X),
	output_html(Term).

p(b(world)).


