
1 // 2 // Copyright (c) 2007, Brian Frank and Andy Frank 3 // Licensed under the Academic Free License version 3.0 4 // 5 // History: 6 // 27 Jun 07 Brian Frank Creation 7 // 8 9 ** 10 ** Main launches a simple bare bones Wisp web server on port 80. 11 ** 12 class Main 13 { 14 15 static Void main() 16 { 17 WispService.make("web").start.join 18 } 19 20 }