Help for this page

Select Code to Download


  1. or download this
    print "--------Trying with arrays-------\n";
    my @a = (0, 1, 2, 3);
    ...
    print "string: >$s<\n";
    print "string reference: >$$sr<\n";
    
  2. or download this
    --------Trying with arrays-------
    Define array >0 1 2 3<
    ...
    reference: >string<
    string: >changed string<
    string reference: >changed string<