Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/gdb/testsuite/gdb.go/global-local-var-shadow.go
2023-03-06 14:48:14 +01:00

11 lines
216 B
Go

package main
import "fmt"
var st = "We shall"
func main () {
fmt.Println ("Before assignment")
st := "Hello, world!" // this intentionally shadows the global "st"
fmt.Println (st) // set breakpoint 1 here
}