improve readme

This commit is contained in:
Cheney 2015-09-23 13:35:48 +08:00
parent 93a73361b8
commit 2622435bfa
1 changed files with 5 additions and 0 deletions

View File

@ -12,7 +12,10 @@ A pure go implementation for gnu readline.
# Usage
You can read example code in [example/main.go](https://github.com/chzyer/readline/blob/master/example/main.go).
* Simplest example
```go
import "github.com/chzyer/readline"
@ -32,6 +35,7 @@ for {
```
* Example with durable history
```go
rl, err := readline.NewEx(&readline.Config{
Prompt: "> ",
@ -52,6 +56,7 @@ for {
```
* Example with auto refresh
```go
import (
"log"