From 4dc3c0cceb98719828a12e0b90eb5946c780ad72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Tue, 30 Apr 2024 21:16:55 +0300 Subject: [PATCH] puts-example.rb: puts example printing string and calculating 4-1 --- ChangeLog | 2 ++ puts-example.rb | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 puts-example.rb 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)