mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +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)
|
|
}
|