geekai/api/test/test.go

13 lines
131 B
Go

package main
import (
"fmt"
"reflect"
)
func main() {
text := 1
bytes := reflect.ValueOf(text).Bytes()
fmt.Println(bytes)
}