# README
Go的标准库示例代码
各库的简要解释
builtin包:内含常用的内建函数
crypto包:内含常用的加密函数
html包:内含转义和解转义HTML文本函数
math包:内含数学函数和数学常量
path包:内含与路径相关的函数
strconv包:内含其它类型与字符串类型之间相互转换的函数
strings包:内含与字符串操作相关的函数
sync包:内含与锁相关的函数
sync/atomic包:底层原子级内存操作
template包:内含html模板
unsafe:内含与Go安全性操作相关的函数
errors:错误相关的包
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
math包提供了 常用的数学常量和数学函数.
No description provided by the author
No description provided by the author
path包:与路径相关的包.
No description provided by the author
用户操作字符串的包.
sync包中的互斥锁 Mutex 开启两个线程模拟窗口1和窗口2对10张票进行售卖.
模板.
No description provided by the author
No description provided by the author