wkday (2) --- get day-of-week corresponding to month, day, year 03/23/80 _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n integer function wkday (month, day, year) integer month, day, year Library: vswtlb (standard Subsystem library) _F_u_n_c_t_i_o_n 'Wkday' is used to return the day-of-the-week corresponding to a given date. The three arguments completely specify the date: the month (1-12), day (1-28, 29, 30, or 31), and year (e.g. 1980). The function return is the ordinal number of the day-of-the-week (1 == Sunday, 7 == Saturday). _I_m_p_l_e_m_e_n_t_a_t_i_o_n Zeller's Congruence. _S_e_e _A_l_s_o date (2), day (1) wkday (2) - 1 - wkday (2)