Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. :- use_module(library(http/thread_httpd)).
  2. :- use_module(library(http/http_dispatch)).
  3.  
  4.  
  5. :- http_handler(root(.), index_write, []).
  6.  
  7. index_write(Request) :-
  8. format('Content-type: text/html~n~n', []),
  9. format('<html>~n', []),
  10. format('Hello World~n'),
  11. format('</html>~n', []).
  12.  
  13. :- initialization
  14. http_server(http_dispatch, [port(8080)]).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement