Help for this page

Select Code to Download


  1. or download this
    #!/tools/bin/perl -w
    greet('world');
    sub greet ($) { print "Hello $_[0]!\n"; }
    
  2. or download this
    main::greet() called too early to check prototype at .//cte line 2.
    Hello world!