mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-09 15:43:43 +01:00
14 lines
236 B
FortranFixed
14 lines
236 B
FortranFixed
|
program irp_example1
|
||
|
BEGIN_SHELL [ /bin/bash ]
|
||
|
echo print *, \'Compiled by `whoami` on `date`\'
|
||
|
echo print *, \'$FC $FCFLAGS\'
|
||
|
echo print *, \'$IRPF90\'
|
||
|
END_SHELL
|
||
|
call run
|
||
|
|
||
|
end
|
||
|
|
||
|
subroutine run
|
||
|
print *, 't = ', t
|
||
|
end
|