Till Runner

Till Runner is the user interface of Till executable programs (TEP). Whenever you click on a TEP or run it by any other method, Till Runner (TR) will handle the EP task.

Say we have random accuracy application “ranacc.till”:

And it is converted to a foreground EP “ranacc.exe”:

Here is TR of “ranacc.exe”:

The title of the application is the name of it. It is possible to set the title and author of TR in the code by using system functions “@title” and “@author”:

The title was changed and at the bottom the name of the author was added.

In TR there are three buttons: run, pause and stop, that enable controlling program run. If the program is paused, clicking on “run” will resume running, otherwise it will run the program again.

In case we want to let the user interact with the application, we can modify the application to “ranacc.interactive.till”:

The system will get the inserted data and continue running. Writing to result file with timestamp was also added.