# 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/cs7xtha
Go 彙編語言快速入門**
爲什麼要學習彙編語言----------更加接近硬件底層,性能極致優化 降維打擊所有 "高級編程語言" 如果讀者對彙編語言零基礎,建議直接跳轉到文末 Reference 列表,最後兩個鏈接可以作爲入門讀物。概述--Go 彙編語言 並不是一個獨立的語言,因爲其無法獨立編譯和使用。Go 彙編代碼必須以 Go 包的方式組織,同時包中至少要有一個 Go 語言文件用於指明當前包名等基本包信息 ⌘ Read more