turtle-lang 0.1.1

A humble, fun, and friendly Lisp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
;; From https://projecteuler.net/problem=3
;;
;; The prime factors of 13195 are 5, 7, 13 and 29.
;;
;; What is the largest prime factor of the number 600851475143 ?

(import "@prelude")
(import "@math" :math)

(let 'n 600851475143)

(assert (eq (last (math::prime-factorization n)) 6857))