use strict; use warnings; use 5.012; sub show { say shift; } show(10); show 5; --output:-- 10 5