Skip to content

Hello, World

Published: at 04:00 PM

From the other side

Post an image here

july-2020-wallpaper_ipad-pro-11-2388x1668-C7OAXb

And some code

有语法高亮

import "fmt"

func main() {
    fmt.Println("HELLO")
}

有语法高亮+行数

import "fmt"

func main() {
    fmt.Println("HELLO")
    os.Exit(0)
}

plaintext

import "fmt"

func main() {
    fmt.Println("HELLO")
    os.Exit(0)
}