// true exits with a successful exit code (0)
package main
import (
"os"
)
func main() {
os.Exit(0)
}