From 8213e6b1519aa98dc47a70ecd1cdf4c36ed9cf34 Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Wed, 25 Sep 2024 22:04:38 +0200 Subject: [PATCH] break format --- tests/sorts/tests_quick_sort.f90 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/sorts/tests_quick_sort.f90 b/tests/sorts/tests_quick_sort.f90 index 0bbfd9d..386aa2f 100644 --- a/tests/sorts/tests_quick_sort.f90 +++ b/tests/sorts/tests_quick_sort.f90 @@ -73,17 +73,17 @@ subroutine run_test(array) ! Print original array print *, "Original array:" - do i = 1, n - print *, array(i) - end do + do i=1,n + print*, array(i) + end do ! Call quick_sort - call quick_sort(array, 1, n) ! (1: low bound , n: high bound) of the array + call quick_sort(array, 1, n) ! (1: low bound , n: high bound) of the array ! Print sorted array print *, "Sorted array:" do i = 1, n - print *, array(i) + print *, array(i) end do print *, ""