ZhangZhihui's Blog  

2023年9月30日

摘要: package main import "fmt" func adder() func(int) int { sum := 0 return func(x int) int { sum += x return sum } } func main() { pos, neg := adder(), ad 阅读全文
posted @ 2023-09-30 10:14 ZhangZhihuiAAA 阅读(18) 评论(0) 推荐(0)
 
摘要: Problem: You want to log in to the system log instead of your logfiles. Solution: Use the log/syslog package to write to syslog. Syslog is a standard 阅读全文
posted @ 2023-09-30 08:20 ZhangZhihuiAAA 阅读(36) 评论(0) 推荐(0)