exercism/go/atbash-cipher/cmd/main.go

12 lines
118 B
Go
Raw Normal View History

2016-08-23 20:47:19 +00:00
package main
import (
"fmt"
"../../atbash-cipher"
)
func main() {
fmt.Println(atbash.Atbash("mindblowingly"))
}