Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
    print "Now I'm there\n";
    seek(STDOUT,0,0);
    print "Now I'm here\n";
    
  2. or download this
    Now I'm there
    Now I'm here
    
  3. or download this
    Now I'm here
    Now I'm there
    
  4. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
    print "Now I'm there\n";
    seek(STDOUT,0,0) or warn $!;
    print "Now I'm here\n";
    
  5. or download this
    Illegal seek at foo.pl line 4.
    Now I'm there
    Illegal seek at foo.pl line 6.
    Now I'm here
    
  6. or download this
    Now I'm here
    Now I'm there