How do you comment out code, such as for testing purposes?
For example, if I want to test out my new logic for mapping joystick to wheel motion, I'd like to keep the old code intact, but non-functional, while the new code is wired up and tested.
In a text-based environment, I'd do something like:
joystick(inx, iny, inbuttons*)
{
/*oldsubroutinethatworks()*/
newuntestedsubrouting()
...
other code
...
}
What does GUIDE have for this purpose?