gdb-msvc/gdb/testsuite/gdb.go/unsafe.go

12 lines
182 B
Go
Raw Normal View History

2020-06-18 10:11:10 +02:00
package main
import ("fmt"
"unsafe")
var mystring = "Shall we?"
func main () {
fmt.Printf ("%d\n", unsafe.Sizeof (42))
fmt.Printf ("%d\n", unsafe.Sizeof (mystring))
}