September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
12
Task/Calendar/REBOL/calendar.rebol
Normal file
12
Task/Calendar/REBOL/calendar.rebol
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
do [if "" = y: ask "Year (ENTER for current):^/^/" [prin y: now/year]
|
||||
foreach m system/locale/months [
|
||||
prin rejoin ["^/^/ " m "^/^/ "]
|
||||
foreach day system/locale/days [prin join copy/part day 2 " "]
|
||||
print "" f: to-date rejoin ["1-"m"-"y] loop f/weekday - 1 [prin " "]
|
||||
repeat i 31 [
|
||||
if attempt [c: to-date rejoin [i"-"m"-"y]][
|
||||
prin join either 1 = length? form i [" "][" "] i
|
||||
if c/weekday = 7 [print ""]
|
||||
]
|
||||
]
|
||||
] ask "^/^/Press [ENTER] to Continue..."]
|
||||
Loading…
Add table
Add a link
Reference in a new issue