Skip to content

Instantly share code, notes, and snippets.

@smujohnson
Created December 17, 2017 20:15
Show Gist options
  • Save smujohnson/48477f25951cb6b949d784551afc4c83 to your computer and use it in GitHub Desktop.
Save smujohnson/48477f25951cb6b949d784551afc4c83 to your computer and use it in GitHub Desktop.
number printer
use 5.010;
use strict;
use warnings;
# ---
open my $fh_read, '<', 'numbers.txt' or die "can't read shit";
while (<$fh_read>) {
chomp;
say;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment