6 lines
125 B
Perl
6 lines
125 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
use warnings;
|
||
|
print"A # has ASCII value ", ord("#"),"\n";
|
||
|
print "A * has ASCII value ", ord("*"),"\n";
|