puts-example.rb: puts example printing string and calculating 4-1

This commit is contained in:
Mert Gör ☭ 2024-04-30 21:16:55 +03:00
parent 2b95656021
commit 4dc3c0cceb
Signed by: hwpplayer1
GPG key ID: 03E547D043AB6C8F
2 changed files with 4 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2024-04-30 Mert Gör <mertgor@masscollabs.xyz>
* 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

2
puts-example.rb Normal file
View file

@ -0,0 +1,2 @@
puts("hello Ruby!")
puts(4-1)