Merge Go Work

This commit is contained in:
2016-08-23 15:47:19 -05:00
parent b8814259b5
commit 9e58d17c5c
25 changed files with 941 additions and 50 deletions

BIN
go/atbash-cipher/cmd/cmd Executable file

Binary file not shown.

View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
"../../atbash-cipher"
)
func main() {
fmt.Println(atbash.Atbash("mindblowingly"))
}