From 479c6e65bc1b8e37588bc040789d1de7042e7a10 Mon Sep 17 00:00:00 2001 From: brent s Date: Sun, 7 May 2017 15:39:02 -0400 Subject: [PATCH] 15:37:38 < jthan> you should use say, not print. 15:37:43 < r00t^2> and why is that? 15:37:50 < jthan> get rid of your ugly \n 15:37:52 < jthan> saves space 15:37:54 < jthan> say is shorter 15:37:56 < jthan> no \n 15:37:57 < jthan> win win win 15:38:04 < r00t^2> lol, fucking fine 15:38:18 < jthan> 1337 perl 15:38:23 < jthan> jthan's specialty --- script-samples/pre/second.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script-samples/pre/second.pl b/script-samples/pre/second.pl index 380cc0f..7bd3347 100644 --- a/script-samples/pre/second.pl +++ b/script-samples/pre/second.pl @@ -3,4 +3,5 @@ use strict; use warnings; -print "And this is the second pre (bootstrap) script.\n"; +# because jthan is a baby +say "And this is the second pre (bootstrap) script.";