/** * Sample Driver for Markov. We will replace this with another file that calls * your code. * * @author Matt Boutell. * Created Oct 2, 2007. */ public class Driver { /** * Start here. * * @param args */ public static void main(String[] args) { String inputFile = "simple.txt"; int n = 1; // prefix-length int maxWordsGen = 100; int maxCharsPerLine = 20; Markov m = new Markov(inputFile, n, maxWordsGen, maxCharsPerLine); } }