# Pastebin FjzuqIyI void ccout(std::string message, uv_tty_t tty) { uv_write_t req; uv_buf_t buf; buf.base = (char*)message.c_str(); buf.len = strlen(buf.base); uv_write(&req, (uv_stream_t*)&tty, &buf, 1, NULL); };