# 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/3p5pebq
Go 中的匿名函數與閉包**
閉包 與 普通函數的區別\\-\\-\\-\\-\\-\\-\\-\\-\\-\\-\\-\\- 在 (普通) 函數里面定義一個內部函數(匿名函數),並且這個內部函數 (匿名函數) 用到了外面 (普通) 函數的變量,那麼將這個內部函數和用到的一些變量統稱爲閉包在閉包中,既有函數,又有數據,而且 (其內部定義的) 數據是閉包裏面獨有的數據,與外界無影響; (普通) 函數中,需要使用的全局變量,在一定程度上是受到限制的,因爲全局變量不僅 ⌘ Read more