# 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/wsoem2a
「每週譯 Go」瞭解 Go 中的布爾邏輯**
布爾數據類型(bool)可以是兩個值中的一個,即真或假。布爾型數據在編程中被用來進行比較和控制程序的流程。 Boolean 在 Go 中的數據類型是bool,全部小寫。值 true 和 false 總是分別用小寫的 t 和 f,因爲它們是 Go 中的特殊值。本教程將涵蓋你需要了解 bool 數據類型如何工作的基礎知識,包括布爾比較、邏輯運算符和真值表。比較運算符-----在編程中,比較運算符被用 ⌘ Read more