# 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/be7okgq
「每週譯 Go」如何在 Go 中編寫條件語句**
介紹------條件性語句是每一種編程語言的組成部分。通過條件語句,我們可以讓代碼有時運行,有時不運行,這取決於當時程序的條件。當我們完全執行程序的每個語句時,我們並沒有要求程序評估特定的條件。通過使用條件語句,程序可以確定某些條件是否被滿足,然後被告知下一步該做什麼。讓我們來看看一些使用條件語句的例子。如果學生的考試成績超過 65%,報告她的成績通過;如果沒有,報告她的成績不合格。 如果 ⌘ Read more