Files
ZPLify/example_test.go

14 lines
183 B
Go
Raw Normal View History

2018-10-19 20:51:21 +02:00
package zplgfa_test
import (
"fmt"
"simonwaldherr.de/go/zplgfa"
)
func ExampleCompressASCII() {
str := zplgfa.CompressASCII("FFFFFFFF000000")
fmt.Print(str)
// Output: NFL0
}