comparison doc/interpreter/basics.txi @ 3803:63c75bc3db82

[project @ 2001-02-28 08:24:40 by jwe]
author jwe
date Wed, 28 Feb 2001 08:24:43 +0000
parents 9507d6de9bbd
children 41e7fa40ff4c
comparison
equal deleted inserted replaced
3802:4f1a26a730fd 3803:63c75bc3db82
201 command line. 201 command line.
202 202
203 @example 203 @example
204 printf ("%s", program_name); 204 printf ("%s", program_name);
205 for i = 1:nargin 205 for i = 1:nargin
206 printf (" %s", argv(i)); 206 printf (" %s", nth (argv, i));
207 endfor 207 endfor
208 printf ("\n"); 208 printf ("\n");
209 @end example 209 @end example
210 210
211 @noindent 211 @noindent