# 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/fnmyvca
Go 語言中常見問題 - break 語句相關坑**
break 語句通常用來終止一個循環,當循環語句帶有 switch 或 select 語句時,使用 break 語句要特別小心,否則會產生 bug。下面通過一個具體的例子說明,這段程序在循環內部通過 switch 判斷 i 的值,如果 i 的值爲 2,期望通過 break 終止循環。for i := 0; i < 5; i++ { fmt.Printf("%d ", i) switc ⌘ Read more=