Re-namespacing everything and fixing imports to match

This commit is contained in:
Dan Buch
2012-12-19 21:10:56 -05:00
parent 335fe2e9bd
commit 76c392967d
13 changed files with 19 additions and 18 deletions

View File

@@ -0,0 +1,34 @@
package main
import (
"fmt"
"os"
"strconv"
)
import (
"github.com/meatballhat/box-o-sand/algs4/go/algs4"
)
const USAGE string = `Usage: algs4-gcd <uint> <uint>`
func main() {
if len(os.Args) < 3 {
fmt.Println(USAGE)
os.Exit(1)
}
p, err := strconv.ParseUint(os.Args[1], 10, 0)
if err != nil {
fmt.Println("Wherps: ", err)
os.Exit(1)
}
q, err := strconv.ParseUint(os.Args[2], 10, 0)
if err != nil {
fmt.Println("Wherps: ", err)
os.Exit(1)
}
fmt.Println(algs4.Gcd(p, q))
}