Created
December 17, 2017 20:15
-
-
Save smujohnson/48477f25951cb6b949d784551afc4c83 to your computer and use it in GitHub Desktop.
number printer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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