mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
17 lines
239 B
D
17 lines
239 B
D
void main()
|
|
{
|
|
auto myTid = runTask({
|
|
auto conn = connectTCP("localhost", 4222);
|
|
|
|
auto l = Lexer(conn);
|
|
foreach (t;
|
|
l)
|
|
{
|
|
|
|
}
|
|
conn.close();
|
|
});
|
|
|
|
// foo
|
|
runEventLoop();
|
|
}
|