Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 271 Bytes

File metadata and controls

18 lines (13 loc) · 271 Bytes

interactive_continue/demo

Animation

package main

import (
	"github.com/pterm/pterm"
)

func main() {
	result, _ := pterm.DefaultInteractiveContinue.Show()
	pterm.Println() // Blank line
	pterm.Info.Printfln("You answered: %s", result)
}