source: EcnlProtoTool/trunk/mruby-1.2.0/mrbgems/mruby-time/mrblib/time.rb@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-ruby
File size: 233 bytes
Line 
1class Time
2 def sunday?; wday == 0 end
3 def monday?; wday == 1 end
4 def tuesday?; wday == 2 end
5 def wednesday?; wday == 3 end
6 def thursday?; wday == 4 end
7 def friday?; wday == 5 end
8 def saturday?; wday == 6 end
9end
Note: See TracBrowser for help on using the repository browser.