main.cpp 336 B

12345678910111213
  1. 
  2. #include "../../DFPSR/includeFramework.h"
  3. using namespace dsr;
  4. DSR_MAIN_CALLER(dsrMain)
  5. int dsrMain(List<String> args) {
  6. // Printing some text to the terminal.
  7. printText(U"Hello world\n");
  8. // When the DSR_MAIN_CALLER wrapper is used over the real main function, returning zero is no longer implicit.
  9. return 0;
  10. }