既然博客系統是go寫的,那麽我們就用go的Hello World作爲開始!

package main

import "fmt"

func main() {
    fmt.Println("Hello World")
}