2016年8月27日土曜日

開発環境

Head First Ruby (Jay McGavren (著)、O'Reilly Media)のChapter 7.(Hashes: Labeling Data)、Making the entire hash optional、CODE MAGNETS(No. 4353)を取り組んでみる。

CODE MAGNETS(No. 4353)

コード(Emacs)

#!/usr/bin/env ruby2.3
# -*- coding: utf-8 -*-


def volume(options)
  options[:width] * options[:height] * options[:depth]
end

result = volume(width: 10, height: 5, depth: 2.5)

puts "Volume is #{result}"

入出力結果(Terminal)

$ ./sample2.rb
Volume is 125.0
$

0 コメント:

コメントを投稿