11 lines
198 B
Text
11 lines
198 B
Text
use std
|
|
|
|
const main = {
|
|
match std.dial("tcp!localhost!256")
|
|
| `std.Ok fd:
|
|
std.write(fd, "hello socket world")
|
|
std.close(fd)
|
|
| `std.Err err:
|
|
std.fatal("could not open fd: {}\n", err)
|
|
;;
|
|
}
|