Files
monkey/examples/echoclient.monkey
Chuck Smith 138df71cc8
Some checks failed
Publish Image / publish (push) Waiting to run
Test / build (push) Waiting to run
Build / build (push) Has been cancelled
build changes
2024-03-28 15:11:47 -04:00

8 lines
157 B
Plaintext

#!/usr/bin/env monkey-lang
fd := socket("tcp4")
bind(fd, "127.0.0.1:32535")
connect(fd, "127.0.0.1:8000")
write(fd, "Hello World")
print(read(fd))
close(fd)