Help for this page

Select Code to Download


  1. or download this
    use Cwd;
    
    sub iamin {
     return cwd;
    }
    
  2. or download this
    sub iamin {
     require Cwd;
     return Cwd::cwd();
    }