diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..6f79086 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,6 @@ +2024-04-30 Mert Gör + + * hello-world-two-strings-newline.rb: Hello world examples two string different lines, or newline added + + * hello-world-two-strings.rb: Hello world examples with to strings in same line + diff --git a/hello-world-two-strings-newline.rb b/hello-world-two-strings-newline.rb new file mode 100644 index 0000000..6a4aba9 --- /dev/null +++ b/hello-world-two-strings-newline.rb @@ -0,0 +1,2 @@ +print "Hello, World!\n" +print "Welcome to Ruby programming!" diff --git a/hello-world-two-strings.rb b/hello-world-two-strings.rb new file mode 100644 index 0000000..9b173f4 --- /dev/null +++ b/hello-world-two-strings.rb @@ -0,0 +1,2 @@ +print "Hello, World!" +print " Welcome to Ruby programming!"