comparison man/lispref/sequences.texi @ 54:05472e90ae02 r19-16-pre2

Import from CVS: tag r19-16-pre2
author cvs
date Mon, 13 Aug 2007 08:57:55 +0200
parents bcdc7deadc19
children 131b0175ea99
comparison
equal deleted inserted replaced
53:875393c1a535 54:05472e90ae02
336 @result{} 11 336 @result{} 11
337 @end group 337 @end group
338 338
339 @group 339 @group
340 (aref "abcdefg" 1) 340 (aref "abcdefg" 1)
341 @result{} 98 ; @r{@samp{b} is @sc{ASCII} code 98.} 341 @result{} ?b
342 @end group 342 @end group
343 343
344 @group 344 @group
345 (aref #*1101 2) 345 (aref #*1101 2)
346 @result{} 0 346 @result{} 0
366 366
367 @group 367 @group
368 (setq x "asdfasfd") 368 (setq x "asdfasfd")
369 @result{} "asdfasfd" 369 @result{} "asdfasfd"
370 (aset x 3 ?Z) 370 (aset x 3 ?Z)
371 @result{} 90 371 @result{} ?Z
372 x 372 x
373 @result{} "asdZasfd" 373 @result{} "asdZasfd"
374 @end group 374 @end group
375 375
376 @group 376 @group
398 (fillarray a 0) 398 (fillarray a 0)
399 @result{} [0 0 0 0 0 0 0] 399 @result{} [0 0 0 0 0 0 0]
400 a 400 a
401 @result{} [0 0 0 0 0 0 0] 401 @result{} [0 0 0 0 0 0 0]
402 @end group 402 @end group
403
403 @group 404 @group
404 (setq s "When in the course") 405 (setq s "When in the course")
405 @result{} "When in the course" 406 @result{} "When in the course"
406 (fillarray s ?-) 407 (fillarray s ?-)
407 @result{} "------------------" 408 @result{} "------------------"