DD2-monitor/core/mklut.pl

10 satır
113 B
Perl
Çalıştırılabilir Dosya

#!/usr/bin/perl
my $foo;
print "LUT1024F\n";
for ($foo=0; $foo<1024; $foo++) {
print rand()*3.30, "\n";
}
0;