diff --git a/greeting.rb b/greeting.rb new file mode 100644 index 00000000..16df3619 --- /dev/null +++ b/greeting.rb @@ -0,0 +1,9 @@ +def greeting + puts "Hello World" +end + +greeting +greeting +greeting +greeting +greeting diff --git a/lib/example.rb b/lib/example.rb index de7d2cbf..00420c81 100644 --- a/lib/example.rb +++ b/lib/example.rb @@ -10,4 +10,27 @@ puts phrase puts phrase puts phrase -puts phrase \ No newline at end of file +puts phrase + +def say_i_love_coding + puts "Flatiron" + puts "Flatiron" + puts "Flatiron" + puts "Flatiron" + puts "Flatiron" + puts "Flatiron" + puts "Flatiron" + puts "Flatiron" + puts "Flatiron" + puts "Flatiron" +end + + +def greeting + puts "Hello World" +end + + + + +