From 404eabab4a6053cafd1007a8260b7644532c5603 Mon Sep 17 00:00:00 2001 From: Sage Date: Mon, 20 Dec 2021 05:19:38 -0800 Subject: [PATCH] Avoid printing new line in Ruby puts adds a newline, which contributing.md says to avoid if possible. print does not add a newline. --- r/Ruby.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r/Ruby.rb b/r/Ruby.rb index cf24b1d3..1ec27daa 100644 --- a/r/Ruby.rb +++ b/r/Ruby.rb @@ -1,2 +1,2 @@ #!/usr/bin/env ruby -puts "Hello World" +print "Hello World"