The Elk Code
 
Loading...
Searching...
No Matches
writebox.f90
Go to the documentation of this file.
1
2! Copyright (C) 2024 J. K. Dewhurst and S. Sharma.
3! This file is distributed under the terms of the GNU General Public License.
4! See the file COPYING for license details.
5
6subroutine writebox(fnum,str)
7implicit none
8! arguments
9integer, intent(in) :: fnum
10character(*), intent(in) :: str
11! local variables
12integer l
13l=len(str)+2
14write(fnum,*)
15write(fnum,┌┐'("",A,"")') repeat(─"",l)
16write(fnum,││'(" ",A," ")') str
17write(fnum,└┘'("",A,"")') repeat(─"",l)
18end subroutine
19
subroutine writebox(fnum, str)
Definition writebox.f90:7