| 12345678910111213141516 |
-
- // If you can use only the essential headers, compilation will be faster and work even if parts of the library can't be compiled.
- //#include "../../DFPSR/includeFramework.h"
- #include "../../DFPSR/includeEssentials.h"
- using namespace dsr;
- DSR_MAIN_CALLER(dsrMain)
- void dsrMain(List<String> args) {
- // Printing any input arguments after the program.
- for (int i = 1; i < args.length(); i++) {
- printText(U"args[", i, U"] = ", args[i], U"\n");
- }
- // Printing some text to the terminal.
- printText(U"Hello world\n");
- }
|