Posted on

前言

和大学同学聊天偶然提到写博客,我决定试着写写看。由于平时工作比较忙,所以不太有时间写专业性很强的长篇 内容,博客会以记录和分享为主,记录自己的学习过程,也顺便练习下表达能力。

为了方便管理,我选择借助 ZolaMarkdown 格式组织博客,网站主题基于 Apollo,代码高亮主题为 Nord, 博客目前托管在 GitHub Pages 上。

代码高亮效果

Go

package main

import "fmt"

func sayHello() {
	fmt.Println("hello, world")
}

func main() {
	sayHello()
}

Rust

fn say_hello() {
    println!("hello, world");
}

fn main() {
    say_hello();
}

Python

def say_hello() -> None:
    print("hello, world")


def main() -> None:
    say_hello()


if __name__ == "__main__":
    main()

写在最后

If you’re thinking without writing, you only think you’re thinking. - Leslie Lamport