# 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/qplymka
從 -go 文本文件到可執行文件**
Go 是一門編譯型語言,我們平時所編寫的 .go 文本文件稱爲源文件,源文件裏面的內容就是我們的源代碼。源代碼要想在目標機器上運行,就必須使用 Go compiler (縮寫 gc ,指代 Go 編譯器)將其先編譯成操作系統能夠直接識別的二進制機器碼文件,或說可執行文件。後續由操作系統加載該文件,並在 CPU 中直接運行機器碼。這也是編譯型語言運行效率高的主要原因。Go compiler 是用什麼 ⌘ Read more