Help for this page

Select Code to Download


  1. or download this
      DB<128>   $CORE::{substr}
     => *CORE::substr
    
      DB<129>   $CORE::{print}
     => undef
    
  2. or download this
    prototype FUNCTION
                   Returns the prototype of a function as a string (or "un
    +def" if
    ...
                   prototype() returns "undef", because the builtin does n
    +ot
                   really behave like a Perl function.  Otherwise, the str
    +ing
                   describing the equivalent prototype is returned.
    
  3. or download this
      DB<131> prototype 'CORE::print'
     => undef
    
      DB<132> prototype 'CORE::substr'
     => "\$\$;\$\$"
    
  4. or download this
      DB<133> CORE::print("bla")
    bla