Advertisement
Guest User

Untitled

a guest
Apr 28th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Function chcase (s) Result (sb)
  2. Character (Len=:), Allocatable :: b
  3. Character (Len=*), Intent (In) :: a
  4.  
  5. Create string s, upper case of string a
  6. ...
  7. b = Trim (s)
  8.  
  9. End Function chcase
  10.  
  11. s = chcase (s)
  12.  
  13. Character (Len=*), Intent (InOut) :: a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement