main.go 104 B

12345678910
  1. package main
  2. import (
  3. "github.com/dchest/captcha"
  4. "os"
  5. )
  6. func main() {
  7. captcha.Encode(os.Stdout)
  8. }