This code chunk is incorrect:
(inc 100) ;; 101
(- 101 80) ;; 20
(* 20 2) ;; 40
and should read:
(inc 100) ;; 101
(- 101 80) ;; 21
(* 21 2) ;; 42
This code chunk is incorrect:
(inc 100) ;; 101
(- 101 80) ;; 20
(* 20 2) ;; 40
and should read:
(inc 100) ;; 101
(- 101 80) ;; 21
(* 21 2) ;; 42