#!/usr/bin/perl -w use strict; my $p1 = "ok"; my $erg = up($p1); exit; sub up { return $_[0]; }