Polymorphism
The ability for a function or a variable to receive values of different types.
(setq x 5)
(setq x ‘(a b c))
In Perl, is this polymorphism?
$x = 5;
$x = "This is a string. ";
Previous slide
Next slide
Back to first slide
View graphic version