# 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/u2bjcua
一篇文章帶你瞭解 Go 語言基礎之函數(中篇)**
前言--Hey,大家好呀,我是星期八,上篇文章學了些基礎:一篇文章帶你瞭解 Go 語言基礎之函數(上篇),這次咱們繼續學習 Go 基礎之函數進階叭。Go 函數內存分配圖----------Go 的函數內存分配,有點像堆分配,有點像,但是本質不是。可以理解像堆內存一樣,棧中保存的是堆的地址。 驗證代碼package mainimport "fmt"func say() string { re ⌘ Read more