From b5f34c03cfec59625135deb725788392433c2102 Mon Sep 17 00:00:00 2001 From: AidenRushbrooke <72034940+AidenRushbrooke@users.noreply.github.com> Date: Mon, 13 Dec 2021 01:09:03 +0000 Subject: Added to chapter 3 of the report --- src/examples/sieve.ft | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/examples') diff --git a/src/examples/sieve.ft b/src/examples/sieve.ft index e771009..cdd308d 100644 --- a/src/examples/sieve.ft +++ b/src/examples/sieve.ft @@ -28,7 +28,7 @@ program sieveOfEratosthenes !output primes found print*,"Primes below ",n - do i=2,n + do i=2,n-1 if checks(i)==1 then print*,i end if -- cgit v1.2.3