package main import ( "os" ) func main(){ if len(os.Args) > 1 && os.Args[1] == "add" { histAdd() return } histList() return }