0 Members and 1 Guest are viewing this topic.
#include <nspireio/console.hpp>int main(void){ nio::console c; c << "Hello World!" << nio::endl; return 0;}
Good to hear. I wonder if the PRIZM version has been cancelled or if it's still in development btw?
#include <nspireio/console.hpp>#include <nspireio/uart.hpp>#include <string.h>#include <string>#include <iostream>#ifndef NIO_TEST_UART#define NIO_TEST_UART 0#endifusing namespace std;using namespace nio;int main(void){ clrscr(); #if NIO_TEST_UART == 1 nio::uart u; #endif nio::console c; int num = 123; char cString[] = "Test"; string cppString = "Text"; c.foreground_color(COLOR_BLACK); c << cString << endl; c << cppString.c_str() << endl; wait_key_pressed(); return 0;}