0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

RubyでHelloWorldを実装してみた

Posted at

概要

今日はRubyでHelloWorldプログラム(Hello Worldと表示するプログラム)を実装してみました。
以下のページを参考にしました。
https://www.sejuku.net/blog/106332

HelloWorldを実行する

以下の通りソースコードを実装しました。上記のページを参考にしました。

main.rb
print "Hello World\n"

以下の通りプログラムを実行しました。

$ ruby main.rb 
Hello World

ちょっと改造したHelloWorldを実行する

以下の通りソースコードを実装しました。上記のページを参考にしました。

main2.rb
y = "World"
num = 2023
 
printf("Hello %s %d\n", y, num)

以下の通りプログラムを実行しました。

$ ruby main2.rb 
Hello World 2023

何かの役に立てばと。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?