# 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/yvpwcrq
Go 中處理字符串的介紹**
字符串是由一個或多個字符 (字母、數字、符號) 組成的序列,這些字符可以是常量,也可以是變量。字符串由 Unicode 組成,是不可變的序列,這意味着它們是不變的。因爲文本是我們日常生活中使用的常見數據形式,所以字符串數據類型是編程中一個非常重要的基石。本 Go 教程將介紹如何創建和打印字符串,如何連接和複製字符串,以及如何在變量中存儲字符串。字符串文字-----在 Go 中,字符串存在於反引號 ⌘ Read more