# 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/fgwkdzq
Go 方法選擇器的正規化**
Go 允許一些選擇器的簡化形式。例如,在下面這個程序中,t1.M1 是 (t1).M1 的簡化形式,而 t2.M2 則是 (&t2).M2 的簡化形式。在編譯時,編譯器將把簡化的形式正規化爲它們原來各自的完整形式。下面這個程序打印出 0 和 9,因爲對 t1.X 的修改對 (t1).M1 的估值結果沒有影響。package maintype T struct { X int}func (t T) ⌘ Read more