# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/crlvaja
Go 面試官:值爲 nil 爲什麼不等於 nil ?**
小明同學去面試被問到了這麼一個面試題,請看代碼:var f func()var a struct{}list := []interface{}{f, a}for , item := range list { if item == nil {  fmt.Println("nil") }}請問輸出結果是啥?可能很多同學,會認爲結果是輸出兩個 nil。爲什麼呢?因爲 f 和 a 都沒初始化,都是 nil ⌘ Read more