Codebase list golang-github-tv42-zbase32 / debian/latest example_test.go
debian/latest

Tree @debian/latest (Download .tar.gz)

example_test.go @debian/latestraw · history · blame

package zbase32_test

import "fmt"
import "github.com/tv42/zbase32"

func Example() {
	s := zbase32.EncodeToString([]byte{240, 191, 199})
	fmt.Println(s)
	// Output:
	// 6n9hq
}