12 lines
118 B
Go
12 lines
118 B
Go
package main
|
|
|
|
import "strconv"
|
|
|
|
func main() {
|
|
str := strconv.Itoa(101)
|
|
println(str[0] == '1')
|
|
}
|
|
|
|
// Output:
|
|
// true
|