- or download this
#!/usr/bin/perl
...
print "This", "is", "a", "test\n";
- or download this
a... list... of... things
Thisisatest
- or download this
use strict;
...
$usefuldata = 2; # in real life, lots of logic here
}
insert_into_database($usefuldata)
- or download this
use strict;
...
# Now we can calculate $usefuldata exactly where we want it
insert_into_database( get_useful_data() )