Skip to content

Instantly share code, notes, and snippets.

@notbenh
Created May 30, 2013 18:50
Show Gist options
  • Save notbenh/5680166 to your computer and use it in GitHub Desktop.
Save notbenh/5680166 to your computer and use it in GitHub Desktop.
Working thru a solution with a student
#!/usr/bin/perl
use strict;
use warnings;
foreach my $x (32..126) {
printf "$x =%3d, \n", $x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment