Welcome
目录:
Welcome
Hello world
代码块demo
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello world !")
}
brew install sl
$ sl
$ rm -rf /*
$ ls
mermaid图Demo
sequenceDiagram
客户端->服务端: 我想找你拿下数据 SYN
服务端-->客户端: 我收到你的请求啦 ACK+SYN
客户端->>服务端: 我收到你的确认啦,我们开始通信吧 ACK
Note right of 服务端: 我是一个服务端
Note left of 客户端: 我是一个客户端
Note over 服务端,客户端: TCP 三次握手
participant 观察者