Remove blank line from the top of Ruby files

This commit is contained in:
John Bampton
2022-12-29 14:29:48 +10:00
parent 9dbcdd51c2
commit 41572d71b6
4 changed files with 0 additions and 4 deletions
-1
View File
@@ -1,4 +1,3 @@
def fib n
return n if n < 2
fib(n-2) + fib(n-1)
-1
View File
@@ -1,4 +1,3 @@
# Cross-compile using MinGW and test using Wine.
#
# Steps:
@@ -1,4 +1,3 @@
def self.include(*modules)
self.class.include(*modules)
end
-1
View File
@@ -1,4 +1,3 @@
assert('Comparable#<', '15.3.3.2.1') do
class Foo
include Comparable