# 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/6ozh6zq
爲什麼 defer 的執行順序和註冊順序不同?**
概述--defer 語句的執行順序是 後進先出,和數據結構中的 Stack (棧) 一樣。package mainfunc main() {    defer func () {        println(1)    }()    defer func () {        println(2)    }()    defer func () {        println(3)    } ⌘ Read more