YEAR
 
Syntax


#include <RTC.bas>                                       ' source in /Program Files/Coridium/BASIClib

#include <RTC17.bas>             ' for the PROplus and SuperPRO LPC175x

FUNCTION YEAR(value)        'When called with 0 the current value for YEAR is returned.

Description


Function setting or returning the year.

When called with a non-zero value, the YEAR is changed.
Range 1 to 4095. 

Example

#include <RTC.bas>
...
YEAR (2006)


PRINT "This is "; MONTH(0); "/"; DAY(0); "/"; YEAR(0), "at"; HOUR(-1); ":"; MINUTE(-1); ":"; SECOND(-1)
The output would look like:
This is 4/14/2006 at 13:15:30