mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
10 lines
151 B
Plaintext
10 lines
151 B
Plaintext
// Check that this work.
|
|
import std::net;
|
|
|
|
fn void main() {
|
|
Socket s;
|
|
defer {
|
|
char[1024] buf;
|
|
while (try s.read(&buf));
|
|
}
|
|
} |