All examples for READTAB
#	Reads a table of Comma-Separated Values (CSV)
#	Such tables are generated, for example, by ASCII export from EXCEL
#	Entries with repeated values of arguments are overwritten
#--------------------------------------------------------

*call	readtab	table	shots
count	integer	1
x	float				999
y	float				999
z	float

format	csv
file		shots.csv	# the file contains only (shot,x,y,z) values
				# separated by commas

repeats	overwrt

#---------------------------------------------------------