... #lowframe Documents Packages The Project Help Blog Play The Go Programming Language package main import "fmt" func main() { fmt.Println("Hello, 世界") } Run Format Share 1 // Copyright 2009 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package strconv 6 7 // ParseBool returns the boolean value represented by the string. 8 // It accepts 1, t, T, TRUE, true, True, 0, f, F, FALSE, false, False. 9 // Any other value returns an error. 10 func ParseBool(str string) (value bool, err error) { 11 switch str { 12 case "1", "t", "T", "true", "TRUE", "True": 13 return true, nil 14 case "0", "f", "F", "false", "FALSE", "False": 15 return false, nil 16 } 17 return false, syntaxError("ParseBool", str) 18 } 19 20 // FormatBool returns "true" or "fal...