# 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/6agyihq
一篇文章帶你瞭解 Go 語言基礎之 map
前言--Hey,大家好呀,我是星期八,這次咱們繼續學習 Go 基礎之 map 扒。回憶往事----在上述的多個文章中,我們學習了數據類型,數組,切片等幫助我們存儲數據。尤其是是切片,可以存儲多個東西,並且可以靈活的增刪改查。但是切片仍然有不太方便的地方。比如學生,一個學生的信息是多個的,例如姓名,身高,體重,年齡等。如果使用切片,我們可能是這樣存儲的。package mainimport "fmt ⌘ Read more