/*
**  version.thor - demonstrates the VERSION function (new for THOR 1.22)
**
**  Will return 0.
**
**	Template:
**
**	STEM/A
**
**	STEM is the stem variable THOR will but the result into, and it must be
**	supplied or this command will fail.  The stem variable must be in 
**	uppercase.
**  The following stem-varibles will be made:
**
**  <stem>.THOR    -    Will give the release version of THOR (ie. 1.22)
**  <stem>.FSE     -    Will give the version of the Internal Full Screen
**                      Editor in THOR.
**  <stem>.BBSREAD -    Will give the version of the bbsread.library
**                      currently loaded in memory.
**  <stem>.REQTOOLS -   Will give the version of the reqtools.library
**                      currently in use by THOR.
**
**  Use this function to get the version of THOR running if you intend
**  to use some of the new ARexx commands new to 1.22 of THOR. 
**  The version output will be the same as in the About-requester in THOR.
**
*/

address "THOR.01"

VERSION stem VER

say "THOR             : " VER.THOR
say "bbsread.library  : " VER.BBSREAD
say "FSE              : " VER.FSE
say "reqtools.library : " VER.REQTOOLS

exit

