# 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/obwtulq
「每週譯 Go」如何在 Go 中編寫 Switch 語句**
介紹--條件語句(點擊查看往期推文) 使程序員有能力指導他們的程序在某個條件爲真時採取某些行動,在條件爲假時採取另一種行動。經常,我們想把一些 變量 [1] 與多個可能的值進行比較,在每種情況下采取不同的行動。僅僅使用if語句 [2] 就可以做到這一點。然而,編寫軟件不僅是爲了讓事情順利進行,也是爲了向未來的自己和其他開發者傳達你的意圖。switch是一個替代性的條件語句,對於傳達你的 Go 程 ⌘ Read more