Help for this page

Select Code to Download


  1. or download this
    # prototypes only check arg format
    # i.e. (scalar/array/hash/code/glob and number of args)
    ...
    print_string($obj); # fine
    print_string(5);    # uh oh... basic numbers don't have a stringify me
    +thod,
                        # yet the arg passed the prototype since 5 is a sc
    +alar.
    
  2. or download this
    # methods don't check prototypes... at all.
    
    ...
    }
    
    print_string_bad($obj);