일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- java
- 자바
- Spring
- Python
- 반다이몰
- 건담베이스
- 인프런
- rails
- Flutter
- 一日一つメソッド
- メソッド
- 일본어
- 日本語
- 単語
- springboot
- CSS
- jsp
- C로 시작하는 컴퓨터 프로그래밍4판
- 비즈니스일본어
- html
- nico
- 건담
- rails7
- vscode
- DART
- ruby
- 연습문제
- Web
- 디지몬
- javascript
Archives
- Today
- Total
AR삽질러
Ruby Hello, Ruby! 본문
728x90
演習1
- Hello, Ruby! と出力するProgram(irb使用)
手順
- irb起動
- Hello, Ruby!と出力するプログラムを書いて実行
- irbを終了
演習
- Hello, Ruby! と出力するプログラム(ファイルを使用)
手順
- 新規ファイルを作成hello_ruby.rb
- Hello, Ruby! と出力するプログラムを書いて保存
- rubyコマンドで実行
$ mkdir ruby_projects
$ touch hello_ruby.rb
$ ruby hello_ruby.rb
コメント
- 特定の処理を一時的に無効にしたい時や、メモをしたい時に利用
$ touch comment.rb
puts 'hellow, world!'
$ ruby comment.rb
hello world!
$ ruby comment.rb
# puts "hello world!"
# puts "hello world!"
# puts "hello world!"
# puts "hello world!"
# puts "hello world!"
=begin
puts "hello world!"
puts "hello world!"
puts "hello world!"
puts "hello world!"
=end
728x90
반응형
LIST
'Ruby > Ruby-日本語' 카테고리의 다른 글
Ruby 比較演算子 (0) | 2023.12.13 |
---|---|
Ruby 文字列 (0) | 2023.12.13 |
Object指向プログラミング言語の概要 (0) | 2023.12.13 |
Ruby 定数 ・ 数値 (0) | 2023.12.13 |
Ruby 変数 (0) | 2023.12.13 |