Initial Commit

This commit is contained in:
2016-08-13 18:20:14 -05:00
commit 50f4a86fd8
408 changed files with 15301 additions and 0 deletions
Executable
BIN
View File
Binary file not shown.
+15
View File
@@ -0,0 +1,15 @@
package main
import (
"fmt"
"../../say"
)
func main() {
tst := []int{0, 14, 50, 98, -1, 100}
for i := range tst {
fmt.Println(say.GetPlaceValue(tst[i], 10))
//fmt.Println(say.Say(tst[i]))
}
}