■現在の西暦年を表示する
■書式
Time.now.year
■説明
現在の西暦年を表示するにはTime.now.yearとします。
■サンプル
#!/usr/bin/ruby
d = Time.now.year
print d,"\n"