From ed484be3c2c24a06266dd9fe16ce51fcbe2ab8d4 Mon Sep 17 00:00:00 2001 From: Erik Osheim Date: Tue, 8 Feb 2022 22:21:54 -0500 Subject: [PATCH] formatting --- primes32.tal | 1 + 1 file changed, 1 insertion(+) diff --git a/primes32.tal b/primes32.tal index 20744ce..57b5dbf 100644 --- a/primes32.tal +++ b/primes32.tal @@ -3,6 +3,7 @@ ( Uses a simple trial-divion method to find primes. ) ( ) ( To determine if x is prime we: ) +( ) ( 1. Check if x is 2 (prime) ) ( 2. Check if x is even (not prime) ) ( 3. Check if x is 3 (prime) )