main.go (95B)
1 /* 2 True exits with 0. 3 4 Usage: 5 6 true 7 */ 8 package main 9 10 import "os" 11 12 func main() { 13 os.Exit(0) 14 }