You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

373 B

goMarkov

markov chains text generator written in Go from scratch

states := markov.train(text)
generatedText := markov.generateText(states, firstWord, count)
fmt.Println(generatedText)

(in the text variable, goes the text content, can be loaded from a .txt file)

Argos