Year 2000 Readiness Disclosure

This statement is designed as a "Year 2000 Readiness Disclosure" as outlined in the Year 2000 Information Readiness and Disclosure Act of 1998.

RIB version 1.2 is Y2K compliant. An evaluation of the RIB software revealed that the areas of concern for compliance use the localtime() function of perl which exhibit the appropriate behavior:

sub Date {
    my $class = shift;
    my $time = localtime(time);
    return $time;
}
The Year 2000 compliance of RIB is dependent upon the Year 2000 compliance of the underlying operating system and perl interpreter. A Year 2000 compliance statement for perl is available at : http://language.perl.com/news/y2k.html.