Files
monkey/examples/echoserver.monkey
Chuck Smith fd8311b280
Some checks failed
Build / build (push) Failing after 6m15s
Test / build (push) Failing after 6m6s
Add socket operations
2024-03-28 14:11:51 -04:00

11 lines
149 B
Plaintext

#!./monkey-lang
fd := socket("tcp4")
bind(fd, "0.0.0.0:8000")
listen(fd, 1)
nfd := accept(fd)
msg := read(nfd)
write(nfd, msg)
close(nfd)
close(fd)