Skip to content

Instantly share code, notes, and snippets.

@anonur
Created February 19, 2019 16:13
Show Gist options
  • Select an option

  • Save anonur/7ac60ddef9ba387f5faaa6193706af77 to your computer and use it in GitHub Desktop.

Select an option

Save anonur/7ac60ddef9ba387f5faaa6193706af77 to your computer and use it in GitHub Desktop.
Just a little sorting program
#!/usr/bin/perl
#sort_names.plx
use warnings;
use strict;
my @unsorted = qw(Onur Aylin Ayvaz Ferrin);
print "Unsorted: @unsorted\n";
my @sorted = sort @unsorted; #sort function puts the words in an alphabetical order.
print "Sorted: @sorted\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment