TestDefault.after

 1package main
 2
 3import (
 4    "fmt"
 5)
 6
 7func main() {
 8    content := "Hello, world!"
 9    fmt.Println(content)
10}