Files
2025-04-03 16:26:11 +08:00

11 lines
99 B
Go

package main
import (
"unsafe"
)
func main() {
a := unsafe.Pointer(uintptr(100))
println(a)
}