mirror of
https://github.com/go-delve/delve.git
synced 2025-11-02 21:40:22 +08:00
13 lines
138 B
Go
13 lines
138 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/peterh/liner"
|
|
)
|
|
|
|
func main() {
|
|
line := liner.NewLiner()
|
|
line.Close()
|
|
fmt.Printf("test\n")
|
|
}
|