- or download this
DB<128> $CORE::{substr}
=> *CORE::substr
DB<129> $CORE::{print}
=> undef
- 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.
- or download this
DB<131> prototype 'CORE::print'
=> undef
DB<132> prototype 'CORE::substr'
=> "\$\$;\$\$"
- or download this
DB<133> CORE::print("bla")
bla