I am an IT-consultant, teaching individuals how to work securely on a computer, protect data with encryption tools and how to communicate securely with people over insecure networks. Contact me to make an appointment.
Monday, April 5, 2010
Perl example: sort
#!/usr/bin/perl @cars = qw/ mercedes bmw audi peugeot /; @sorted = sort(@cars); print "\n" . "@sorted" . "\n\n";