: How can i Display contents of a csv file in the apropriate order as follows
:
: Sampl CSV File
: Riddick Borg, 128,14
:
:
: Will be displayed on screen as
:
: Name: Riddick Borg
: Weight : 128
: Age : 14
:
: This should be done by using procedure DisplayEntry(name,weight,age)
:
procedure DisplayEntry(name, weight, age: string);
begin
writeln('Name: ', name);
etc.
end;