Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

takkk

(setq x 0)
(setq i 1)
(setq tic "tic")
(setq toe "toe")
(loop
 (terpri)
 (setq x (+ x i))
 (if (/= (* (mod x 3) (mod x 7)) 0)
     (print x)
     (if (= (mod x 3) (mod x 7)) (print "tic toe")
     ((if (= (mod x 3) 0) (print tic) )
      (if (= (mod x 7) 0) (print toe) ))))
 (when (> x 60) (return x))
)

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.