# 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/xyaonpq
一篇文章帶你瞭解 Go 語言基礎之數組**
前言Hey,大家好呀,我是星期八,這次咱們繼續學習 Go 基礎之數組扒。什麼是數組-----我的總結:一個變量,指向一塊連續的,具有長度的,並且是相同類型的一塊內存。如何定義數組------var 變量名 [元素個數]元素類型示例: package mainfunc main() { //聲明一個namelist數組,長度爲100,裏面只能放字符串 var namelist [100 ⌘ [Read more](https://www.readfog.com/a/1663446597381492736)