Files
crosslangextras/Templates/emptyweb/src/program.tcross
2025-05-08 21:27:29 -05:00

12 lines
238 B
Plaintext

func main(args)
{
Net.Http.ListenSimpleWithLoop((ctx)=>{
if(ctx.Path == "/")
{
ctx.WithMimeType("text/html").SendText(Pages.Index());
return true;
}
return false;
},4206);
}