view basicweb.rhope @ 18:ea991f95ae1f

C backend working well enough to generate Fib test
author Mike Pavone <pavone@retrodev.com>
date Wed, 27 May 2009 04:49:32 -0400
parents 76568becd6d6
children 6202b866d72c
line wrap: on
line source

/*
	Uses the webserver library to serve static files from the current directory
*/

//Import the library that does all the hard work
Import webserver.rhope

Main[]
{
	Print["Starting webserver"]
	//Since we're just serving static files we don't need to setup any handlers
	handlers <- New@Dictionary[]
	//Start listening on port 80
	Listen on Port[80,["Connection Start"]Set Input[1, handlers]]
	Wait Forever[]
}