> How do I create an AsyncFile object for stdin (cross platform) since stdin > does not have a file name in Linux?
AsyncFile for stdin is currently not supported. You will need to use `spawn` as I've done here: [https://github.com/dom96/nim-in-action-code/blob/master/Chapter3/ChatApp/src/client.nim#L38](https://github.com/dom96/nim-in-action-code/blob/master/Chapter3/ChatApp/src/client.nim#L38)
