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

9 lines
149 B
Go

package main
import "fmt"
func main () {
fmt.Println ("Before assignment")
st := "Hello, world!"
fmt.Println (st) // set breakpoint 1 here
}