■現在の時を表示する
■書式
Time.now.hour
■説明
現在の時を表示するにはTime.now.hourの値をprintで表示します。
■サンプル
#!/usr/bin/ruby
h = Time.now.hour
print h,"\n"