A versatile print function similar to Python's built-in print.
It accepts a variable number of arguments (using a Python tuple) and prints their string representations to the PlanetCNC output panel.
The function converts the input arguments into a single string, splits it by newline characters, and outputs each line to the panel.
planetcnc.print(args)
#! /usr/bin/env python import planetcnc # Print a message to the PlanetCNC output panel, similar to Python's print. planetcnc.print("Hello,", "world!", 123, "This is a test.")