FULLSCREEN CONTENTS Project Home Page
.EXAMPLE.....: 53 Convert numbers to "extended hex" (XX) format
.ALIAS.......: 53
.CATEGORY....: examples 
.CODE........:

@echo off
cls
SET decnum=0

:top
   if (%decnum%)==(37) goto endit
   fdate /f#2xx /A%decnum% /P"XX representation of %decnum% is "
   fdate /f#add /A%decnum% /b1 /Vdecnum
goto top


:endit