(progn (print"The first form") (print"The second form") (print"The third form")) ⊣ "The first form" ⊣ "The second form" ⊣ "The third form"⇒ "The third form"
(prog1 (print"The first form") (print"The second form") (print"The third form")) ⊣ "The first form" ⊣ "The second form" ⊣ "The third form"⇒ "The first form"
(prog2 (print "The first form")
(print "The second form")
(print "The third form"))
⊣ "The first form"
⊣ "The second form"
⊣ "The third form"
⇒ "The second form"