開発環境
- OS X Lion - Apple(OS)
- TextWrangler(Text Editor) (BBEditの機能制限無料版、light版)
- Script言語:Ruby
『Learning Ruby』(Michael Fitzgerald 著、O'Reilly Media、2007年、ISBN978-0-596-52986-4)の Chapter 8(Working with Files)Review Questions 5を解いてみる。
その他参考書籍
- 『プログラミング言語 Ruby』David Flanagan, まつもと ゆきひろ 著 、卜部 昌平 監訳、長尾 高弘 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-394-4)
5.
array
コード(TextWrangler)
#!/usr/bin/env ruby # -*- coding: utf-8 -*- result = Dir.entries(".") puts "kind: #{result.class}" result.each do |item| puts item end
入出力結果(Terminal)
$ ./sample.rb kind: Array . .. .DS_Store birth_day_helper Ruby ruby_kamimura_blog sample.rb sample_folder tcl8.4.19 tk8.4.19 tmp.txt tmp_test $
0 コメント:
コメントを投稿