Skip to content

Commit

Permalink
fix(bubble_sort): memperbaiki koma pada variabel
Browse files Browse the repository at this point in the history
Signed-off-by: slowy07 <[email protected]>
  • Loading branch information
slowy07 committed Oct 8, 2024
1 parent fce8675 commit f996908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/sorting/bubble_sort.f90
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ subroutine bubble_sort(collection)
!! yang dimana nilainya bilangan real
real, dimension(:), intent(inout) :: collection
!! variabel integer untuk iterasi
integer :: i, j collection_size
integer :: i, j, collection_size
!! variabel sementara untuk save yang nantinya
!! nilai yang akan ditukarkan
real :: temp
Expand Down

0 comments on commit f996908

Please sign in to comment.