Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    use File::Spec;
    ...
    
    HelloFoo();
    HelloBar();
    
  2. or download this
    void HelloFoo()
    {
        printf("hello from foo\n");
    }
    
  3. or download this
    void HelloBar()
    {
        printf("hello from bar\n");
    }