Copy stdin to stdout: Difference between revisions

Added Rust
(Add Julia language)
(Added Rust)
Line 148:
call charout , x /*write " " " " output " */
end /*while*/ /*stick a fork in it, we're all done. */</lang>
 
=={{Header|Rust}}==
<lang Rust>use std::io;
 
fn main() {
io::copy(&mut io::stdin().lock(), &mut io::stdout().lock());
}</lang>
 
=={{Header|Scheme}}==
Anonymous user