Initial pass at Go language support.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.go / handcall.go
1 package main
2
3 func add (a,b int) (int) {
4 return a + b
5 }
6
7 func sub (a,b int) (int) {
8 return a - b
9 }
10
11 var v_int int
12
13 func main () {
14 v_int = 42 // set breakpoint 1 here
15 }
This page took 0.039313 seconds and 4 git commands to generate.