# 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/plhyb3q
Go 語言怎麼使用類型轉換和類型斷言?**
01 介紹Go 語言是強類型編程語言,一些使用弱類型編程語言的讀者朋友們在初學 Go 語言時,多多少少都會不太適應 Go 語言的類型。Go 語言變量類型包含基礎類型和複合類型,類型轉換和類型斷言一般是對基礎類型的處理,基礎類型包含整數、浮點數、布爾和字符串。其中整數類型又稱爲整型,分爲有符合和無符號,各自又包含不同大小,8 位、16 位、32 位和 64 位,其中 int32 和 uint8 的類 ⌘ Read more