Help for this page

Select Code to Download


  1. or download this
    # this is bad...
    #
    ...
    }
    
    do_something(1.2);
    
  2. or download this
    use v5.14;
    use warnings;
    ...
       DBI->connect("dbi:SQLite:dbname=myapp.sqlite"),
       '/tmp/output.txt',
    );
    
  3. or download this
    use v5.14;
    use warnings;
    ...
       output_file  => '/tmp/output.txt',
    );
    $app->do_something;