Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.59 KB

README.md

File metadata and controls

60 lines (40 loc) · 1.59 KB

base65536

GoDoc License Build Status Coverage Status Gratipay User

An implementation of ferno's base65536, implemented in GoLang.

Description

This is a Go library for encoding and decoding. If you show detail for base65536, see ferno's base65536 README page

Install

standard go get:

go get -u github.com/usk81/base65536

Usage

encode:

s := "hello world"
result := base65536.Encode(s)

Println(result)
// 驨ꍬ啯𒁷ꍲᕤ

decode:

s := "驨ꍬ啯𒁷ꍲᕤ"

result := base65536.Decode(s)
Println(result)
// hello world

Contribution

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Licence

MIT

Author

Yusuke Komatsu