Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
fix undeclard variables
Browse files Browse the repository at this point in the history
  • Loading branch information
wesbarnett committed Jan 23, 2018
1 parent 4b1ea03 commit 8e95703
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions example/main.f90
Expand Up @@ -7,6 +7,7 @@ program main
type(Trajectory) :: trj
real(8) :: box(6)
real :: x(3)
integer :: i, j

call trj%read("dump.dcd")

Expand All @@ -20,6 +21,9 @@ program main

x = trj%x(i,j)

! Just for testing
write(*,*) x

end do

end do
Expand Down

0 comments on commit 8e95703

Please sign in to comment.