7 lines
161 B
Text
7 lines
161 B
Text
|
|
procedure print_args(sequence args)
|
||
|
|
for i=1 to length(args) do
|
||
|
|
?args[i]
|
||
|
|
end for
|
||
|
|
end procedure
|
||
|
|
print_args({"Mary", "had", "a", "little", "lamb"})
|