File: main.go

package info (click to toggle)
golang-github-liamg-clinch 1.5.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,576 kB
  • sloc: makefile: 2
file content (12 lines) | stat: -rw-r--r-- 183 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
package main

import (
	"fmt"

	"github.com/liamg/clinch/prompt"
)

func main() {
	password := prompt.EnterPassword("Enter password:")
	fmt.Printf("\nYou entered '%s'\n", password)
}