Print
This functions prints text to the application console. It is useful for revealing debug information.
Syntax
- void Print( const std::string& value )
- void Print( const int value )
- void Print( const float value )
- void Print( const bool value )
- void Print( Object* value )
- void Print( const std::string& value )
- void Print( const std::string& value )
- void Print( Object& value )
Parameters
- value: the value to print. This can take the form of many types of data.
Example
#include "Leadwerks.h"
using namespace Leadwerks;
int main(int argc, const char *argv[])
{
System::Print("Hello, World!");
return 0;
}