Back to Gotraining

Chatbot Exercise

topics/go/exercises/chatbot/README.md

latest486 B
Original Source

Chatbot Exercise

Write a bot to talk to you. Read lines of input from stdin and respond with random responses to predefined keywords.

Your bot may behave something like this:

Topics covered by this exercise:

  • String handling.
  • Reading one line at a time from an io.Writer using the bufio package.
  • Using math/rand for picking pseudo-random numbers.

A template file is included to get you started.