mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-06 16:58:24 +08:00
13 lines
131 B
Go
13 lines
131 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
)
|
|
|
|
func main() {
|
|
text := 1
|
|
bytes := reflect.ValueOf(text).Bytes()
|
|
fmt.Println(bytes)
|
|
}
|