Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Demonstration program to test Hebrew.btm

Aug
1,916
68
Code:
::-------------------------------------------------------------------:
:: Demonstration program to test Hebrew.btm  :
::  :
:: TCC  16.01.45  Windows Vista [Version 6.0.6002]  :
:: TCC Build 45  Windows Vista Build 6002  Service Pack 2  :
:: PowerShell 2.0  :
::-------------------------------------------------------------------:
@setlocal
@echo off
echo Test of Hebrew.btm
echo.
echo Date variables before running Hebrew.btm
echo _year  %_year
echo _leapyear %_leapyear
echo _day  %_day
echo _doy  %_doy
echo _dowf  %_dowf
echo _month  %_month
echo _monthf  %_monthf
echo.
echo.
call hebrew.btm set
echo Date variables after running Hebrew.btm
echo _year  %_year
echo _leapyear %_leapyear
echo _day  %_day
echo _doy  %_doy
echo _dowf  %_dowf
echo _month  %_month
echo _monthf  %_monthf
endlocal
 
Back
Top