Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
the-maldridge committed Mar 10, 2021
0 parents commit 0f2fafa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package main

import (
"hash/crc32"
"io/ioutil"
"log"
)

func main() {
b, err := ioutil.ReadFile("x86_64-repodata")
if err != nil {
log.Println(err)
return
}
log.Println(crc32.ChecksumIEEE(b))
}

0 comments on commit 0f2fafa

Please sign in to comment.