diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-06-30 17:20:46 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-06-30 17:20:46 +0200 |
commit | ee57979cfaf37aaf1d7c72155a3f65cc02caa286 (patch) | |
tree | fb1867efd7d9eae3daf8ce89e3de752fa983307b /p3.lisp |
Diffstat (limited to 'p3.lisp')
-rw-r--r-- | p3.lisp | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +(setq n 13195) + +(dotimes (i n) + (if (eq (mod i n) 0) + (print i) + ) +) |