Files
monkey/examples/echoclient.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

8 lines
146 B
Plaintext

#!./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)