// This is free and unencumbered software released into the public domain.
useasync_flow::{Result, System};#[tokio::main(flavor ="current_thread")]pub async fnmain()-> Result{System::run(|s|{let stdin = s.read_stdin::<String>();let stdout = s.write_stdout::<String>();
s.connect(stdin, stdout);}).await
}