From 8026d2618d3b48bdcb1363ad4d651b37c41030a3 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 8 Mar 2013 21:51:43 -0600 Subject: another rust solution --- PROT.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 PROT.rs (limited to 'PROT.rs') diff --git a/PROT.rs b/PROT.rs new file mode 100644 index 0000000..40979e1 --- /dev/null +++ b/PROT.rs @@ -0,0 +1,8 @@ +extern mod rosalind; +use rosalind::io::input_line; +use rosalind::protein::translate; + +fn main() { + let rna = input_line(); + io::println(translate(rna)); +} -- cgit v1.2.3-54-g00ecf