I’m currently teaching myself perl, so I’m going to post any useful link that I find on here. I’m finding it quite interesting so far.
Everybody’s first program and my first perl program.
#!/usr/bin/perl use warnings; print "Hello, world.\n"; # Print a short message print "Goobye, world.\n";
This is what I’ve done so far, I’ll get there eventually