Help for this page

Select Code to Download


  1. or download this
    use utf8;
    use Devel::Peek;
    ...
    use bytes;
    print length($x);
    __END__
    
  2. or download this
    SV = PV(0x15d5584) at 0x1a45848
      REFCNT = 1
    ...
      CUR = 2
      LEN = 3
    2
    
  3. or download this
    use utf8;
    use Devel::Peek;
    ...
    use bytes;
    print length($x);
    __END__
    
  4. or download this
    SV = PV(0x15d5584) at 0x1a45848
      REFCNT = 1
    ...
      CUR = 1
      LEN = 2
    1
    
  5. or download this
    use utf8;
    use Devel::Peek;
    ...
    use bytes;
    print length($x);
    __END__
    
  6. or download this
    SV = PV(0x15d5584) at 0x1a4583c
      REFCNT = 1
    ...
      CUR = 2
      LEN = 80
    2
    
  7. or download this
    use utf8;
    use Devel::Peek;
    ...
    use bytes;
    print length($x);
    __END__