# 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/r4msyra
使用 Rust 和 LLVM 構建編譯器**
Cyclang 是一個簡單的靜態類型編程語言,支持基本的語言構造,例如函數、控制流和算術操作。該語言的功能設計非常簡潔,完整的語言規範可以參考官方文檔。本項目的重點是從零開始使用 Rust 和 LLVM 構建一個編譯器的過程,而非語言本身的複雜性。以下是 Cyclang 代碼的一個示例:fn fib(i32 n) -  i32 {      if (n < 2) {          retur ⌘ Read more