Concept Flow - Puts, print, and p output differences
Start
Call puts
Prints string + newline
Call print
Prints string without newline
Call p
Prints inspected string + newline
End
The program calls puts, print, and p in order, each printing output differently: puts adds a newline, print does not, and p shows the inspected value with newline.