Skip to content

Commit

Permalink
Debug test file
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Sep 24, 2024
1 parent a6c40e6 commit 71b23db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fortran/test.f90
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ program test
integer :: num_problems

num_problems = 7
allocate(problem_ids(num_problems), answers(num_problems), long_runtime(num_problems))
allocate(problem_ids(num_problems))
allocate(answers(num_problems))
allocate(long_runtime(num_problems))
problem_ids = (/ &
001, &
002, &
Expand Down

0 comments on commit 71b23db

Please sign in to comment.