Skip to content

Instantly share code, notes, and snippets.

View Bowenislandsong's full-sized avatar

Bowen Song Bowenislandsong

  • USC
View GitHub Profile
@ecoshub
ecoshub / IntToByteArray.go
Last active December 9, 2023 18:27
golang integer to byte array and byte array to integer function
package main
import (
"fmt"
"unsafe"
)
func main(){
// integer for convert
num := int64(1354321354812)