Concept Flow - Echo vs print behavior
Start
Call echo
Output string immediately
Call print
Output string and return 1
Use return value if needed
End
Echo outputs strings immediately without returning a value, while print outputs strings and returns 1, allowing it to be used in expressions.