read `RandComp.txt`: L:=[1,2]: n:=100: N:=1000: m:=6: i:=1: print(`The following is an experiment with`, N, `random words in the alphabet`, convert(L,set), `that add-up to`, n): print(`and finding the empirical average, standard deviation, and scaled moments up to the`, m, `-th `): print(`accodring to the random variable: number of occurrences of`, i): print(`It also outputs the exact values (theorerically derived) for the averge and standard deviation`): print(Exper(L,n,N,i,m)); print(`This took`, time(), `seconds . `): quit: