days.gsf
名前
days() - 一月あたり又は一年あたりの日数を求める
概要
ret = days( year [, month] )
引数と戻り値
- year
- 年
- month
- 月(省略可)
- ret
- month が指定されている場合、その月の日数。month が指定されていない場合、その年の日数。
使用例
(1) 1995年が何日あるか表示する。
-
test.gs
rc = gsfallow( 'on' ) say days( 1995 )
-
コンソール
ga-> test 365
(2) 2015年11月が何日あるか表示する。
-
test.gs
rc = gsfallow( 'on' ) say days( 2015, 11 )
-
コンソール
ga-> test 30
ソースコード
- days.gsf (必須)