# 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/nl3x24a
一篇文章帶你瞭解 Go 語言基礎之字節類型**
前言--Hey,大家好呀,我是星期八,這次咱們繼續學習 Go 基礎之字節類型吧。上文之字符串回顧--------在上述文章中,我們學過了字符串類型。在 Go 語言中,字符串類型是基本類型,在棧中存儲,其結構如下。可以看到,在 Go 中,字符串其實就是指向了一個連續的內存地址,並且記錄了長度,讀取是一次性讀取出來的。那麼,如上圖所示,內存裏面存的一個個字母叫啥呢???byte 和 rune 類型-- ⌘ Read more