// Hello world! mode Server #include main: fd=0,fdc=0,message="" {"HTTP/1.1 200 OK\n","Content-Type: text/html; charset=UTF-8\n\n"}cat {"Bye-bye baby bye-bye"},cat {""}cat {"

Goodbye, world!

\n"}cat, mov(message) /* Open socket in localhost (by default) */ /* Accept 5 conections (there are also 5 by default, if you put "any weĆ”" there) */ {5,8080}socket (OPENTCPSRV), mov(fd) /* accept conection & send message */ accept(fd), mov(fdc) {message},send(fdc) /* close all */ {fdc}socket(CLOSESOCK) {fd}socket(CLOSESOCK) exit(0)