Files
moxa/_test/str2.go
2019-06-11 15:30:07 +02:00

13 lines
173 B
Go

package main
const itoa64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
func main() {
if itoa64[3] == '1' {
println("ok")
}
}
// Output:
// ok