exercism/go/protein-translation/protein_translation.go
2022-08-24 14:28:45 +02:00

10 lines
212 B
Go

package protein
func FromRNA(rna string) ([]string, error) {
panic("Please implement the FromRNA function")
}
func FromCodon(codon string) (string, error) {
panic("Please implement the FromCodon function")
}