mirror of
https://github.com/taigrr/colorhash.git
synced 2026-04-01 18:58:45 -07:00
13 lines
134 B
Go
13 lines
134 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/taigrr/colorhash"
|
|
)
|
|
|
|
func main() {
|
|
x := colorhash.HashString("asdasd")
|
|
fmt.Println(x)
|
|
}
|