# 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/xemilbq
將 Go 語言當成腳本來使用 - gomacro
gomacro 是一個近乎完整的 Go 解釋器,用純 Go 實現,它同時提供交互式 REPL 和腳本模式,並且在運行時不需要 Go 工具鏈(除了一些非常特殊的場景:在運行時導入第三方包)。它在 Go 標準庫之外有兩個依賴項:github.com/peterh/liner 和 golang.org/x/tools/go/packages。REPL 是 Read-Eval-Print Loop 的縮寫 ⌘ Read more