summaryrefslogtreecommitdiffstats
path: root/RNA.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-03-08 03:04:42 -0600
committerJesse Luehrs <doy@tozt.net>2013-03-08 03:04:42 -0600
commit275fb6919260a545ca46181e297cdfe4a1880865 (patch)
treee2e3fdeb39e5b2a281bf977aafe4653d728783ff /RNA.rs
parent91aa0faa200421e5a95fc52d20e492288dc94f31 (diff)
downloadrosalind-275fb6919260a545ca46181e297cdfe4a1880865.tar.gz
rosalind-275fb6919260a545ca46181e297cdfe4a1880865.zip
couple more rust solutions
Diffstat (limited to 'RNA.rs')
-rw-r--r--RNA.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/RNA.rs b/RNA.rs
new file mode 100644
index 0000000..30091fe
--- /dev/null
+++ b/RNA.rs
@@ -0,0 +1,12 @@
+use io::{stdin,stdout,ReaderUtil,WriterUtil};
+
+fn main() {
+ let stdout = stdout();
+ for stdin().each_char() |ch| {
+ match ch {
+ 'T' => { stdout.write_char('U') }
+ '\n' => { stdout.write_char(ch); return }
+ _ => { stdout.write_char(ch) }
+ }
+ }
+}