summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2017-07-08 17:53:14 +0000
committerrsiddharth <s@ricketyspace.net>2017-07-08 17:56:59 +0000
commit28ed257cc0574c94b1d7d34b106205f5d2bd37a4 (patch)
tree8306099c88ae159581e6290f624e0281cd469574
parentc114fc76f038f89f85c873dbacbdd01dd97f9885 (diff)
net: Add three-primes-gt-100000.
* net/ricketyspace/sicp/one/twentytwo.scm (three-primes-gt-100000): New function.
-rw-r--r--net/ricketyspace/sicp/one/twentytwo.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ricketyspace/sicp/one/twentytwo.scm b/net/ricketyspace/sicp/one/twentytwo.scm
index 4bb79fa..3f7d354 100644
--- a/net/ricketyspace/sicp/one/twentytwo.scm
+++ b/net/ricketyspace/sicp/one/twentytwo.scm
@@ -63,3 +63,6 @@
(define (three-primes-gt-10000)
(three-primes-gt 10000))
+
+(define (three-primes-gt-100000)
+ (three-primes-gt 100000))