initial commit
[urisagit/Sort-Maker.git] / exp / num_NA.pl
CommitLineData
7468c584 1#!/usr/local/bin/perl
2
3use Sort::Maker ;
4
5my $sorter = make_sorter( 'GRT', number => '/\D/ ? 0 : $_' ) ;
6print "$@" unless $sorter ;
7
8
9print map "$_\n", $sorter->( qw( 22 1 10 NA 33 NA ) ) ;
10
11
12
13