Programmer in training here :) I'm trying to find some sample files that show me how to read data from a text file. The file is in the format: 1,2,3,4 2,2,3,4 3,2,3,4 This is the lisp I am starting with: (setq f (open (strcat path fileName) "r")) (while (setq data (read-line f))) Anyone have something similar I could look at to see how to put this into a list or manipulate the data properly? Or I hope you can at least point me in the right direction and let me know what to search for. Thanks a bunch, kemp