summaryrefslogtreecommitdiff
path: root/p3.lisp
diff options
context:
space:
mode:
authorTom Barrett <tom@tombarrett.xyz>2021-06-30 17:20:46 +0200
committerTom Barrett <tom@tombarrett.xyz>2021-06-30 17:20:46 +0200
commitee57979cfaf37aaf1d7c72155a3f65cc02caa286 (patch)
treefb1867efd7d9eae3daf8ce89e3de752fa983307b /p3.lisp
first threeHEADmaster
Diffstat (limited to 'p3.lisp')
-rw-r--r--p3.lisp7
1 files changed, 7 insertions, 0 deletions
diff --git a/p3.lisp b/p3.lisp
new file mode 100644
index 0000000..72645fb
--- /dev/null
+++ b/p3.lisp
@@ -0,0 +1,7 @@
+(setq n 13195)
+
+(dotimes (i n)
+ (if (eq (mod i n) 0)
+ (print i)
+ )
+)