Testing program for BeFoR64, Base64 encoding/decoding library for FoRtran poor men
./Test_Driver
program Test_Driver
!-----------------------------------------------------------------------------------------------------------------------------------
!< Testing program for BeFoR64, Base64 encoding/decoding library for FoRtran poor men
!<
!<### Usage
!<```bash
!< ./Test_Driver
!<```
!-----------------------------------------------------------------------------------------------------------------------------------
use befor64, only : autotest ! Autotesting procedure.
!-----------------------------------------------------------------------------------------------------------------------------------
!-----------------------------------------------------------------------------------------------------------------------------------
implicit none
!-----------------------------------------------------------------------------------------------------------------------------------
!-----------------------------------------------------------------------------------------------------------------------------------
print "(A)", 'Testing BeFoR64'
call autotest
stop
!-----------------------------------------------------------------------------------------------------------------------------------
endprogram Test_Driver