LowerCae
This is a function which converts a string into lower case.
Interface
- ܀ Interface
 - ️܀ See example
 - ↢
 
INTERFACE
  MODULE PURE FUNCTION LowerCase(chars) RESULT(Ans)
    CHARACTER(*), INTENT(IN) :: chars
    CHARACTER(LEN(chars)) :: ans
  END FUNCTION LowerCase
END INTERFACE
program main
use easifemBase
implicit none
character(20) :: astr = "HELLO"
CALL Display(LowerCase(astr), "hello=" )
end program main