项目作者: chongwish

项目描述 :
Char coding transform
高级语言: Common Lisp
项目地址: git://github.com/chongwish/clo-coding.git
创建时间: 2017-08-01T05:54:00Z
项目社区:https://github.com/chongwish/clo-coding

开源协议:

下载


NAME

clo-coding - Char coding transform

SYNOPSIS

  1. clo => Common Lisp Only
  2. coding => Encode/Decode the code

Usage

  1. # load to system
  2. # link to the asd or ql path
  3. $> ln -s {clo-operator-path} {asd/ql-path}
  4. # or copy
  5. $> copy {clo-operator-path} {asd/ql-path}
  6. # utf8
  7. CL-User> (clo-coding.utf8:encode "你好")
  8. (14990752 15050173)
  9. CL-User> (clo-coding.utf8:decode '(14990752 15050173))
  10. (#\U4F60 #\U597D) => "你好"