# 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/z5ge4da
Go:關鍵字與預定義標識符**
語法是一門編程語言的基礎,而關鍵字又是語法的基礎,我們通過這些關鍵字構建出一個個應用程序。不知道大家是不是和我一樣,對於這些語法,通常採用 “熟能生巧” 的辦法掌握,很少系統的記憶。直到有一次,編寫 switch 語句時,在沒有添加 break 的情況下,case 匹配成功後卻未繼續往下執行,這是爲什麼?原來 ,Go 語言的 switch case 自帶 break,如果希望繼續往下執行,則需要用 ⌘ Read more