Automatic date update in version.in
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.go / unsafe.go
1 package main
2
3 import ("fmt"
4 "unsafe")
5
6 var mystring = "Shall we?"
7
8 func main () {
9 fmt.Printf ("%d\n", unsafe.Sizeof (42))
10 fmt.Printf ("%d\n", unsafe.Sizeof (mystring))
11 }
This page took 0.03235 seconds and 4 git commands to generate.