Hi Larry,
If you have the KSDK_v2 distribution for your Kinetis device (and/or Freedom or Tower) then look in the following path for example if using virtual com in two ways:
C:\NXP\KSDK_v2\SDK_2.0_FRDM-KL43Z_KDS\boards\frdmkl43z\usb_examples\usb_device_cdc_vcom\bm\kds\debug
This example uses the debugger interface to output a simple message to COM port.
If you connect a second USB cable to the USB connected to Kinetis, then another VCOM will enumerate and whatever you type gets echoed back.
With KSDK_v2 there is only one project that contains everything you need and you do not have to worry about compiling libraries.
Look in your project folder to see "utilities" folder that has fsl_debug_console.c/h files.
Ex:

In the "board" folder also has board.c/h and in board.c the Kinetis UART used to connect to OpenSDA interface is initialized:
DbgConsole_Init(BOARD_DEBUG_UART_BASEADDR, BOARD_DEBUG_UART_BAUDRATE, BOARD_DEBUG_UART_TYPE, uartClkSrcFreq);
Regards,
David