diff --git a/ChangeLog b/ChangeLog index 6f79086..993f94a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2024-04-30 Mert Gör + * puts-example.rb: puts example printing string and calculating 4-1 + * 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/puts-example.rb b/puts-example.rb new file mode 100644 index 0000000..c315d6c --- /dev/null +++ b/puts-example.rb @@ -0,0 +1,2 @@ +puts("hello Ruby!") +puts(4-1)