Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
193 B

#!/usr/bin/perl
use warnings;
use strict;
# v
# e
# r
# t
# i
# c
# a
# l
# i
# z
# e
#
# a
#
# s
# t
# r
# i
# n
# g
my $input = <STDIN>;
foreach my $l (split //, $input) { print "$l\n"; }