read `RandComp.txt`: L:=[2,3,7]: n:=200: N:=2000: m:=6: i:=7: 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: