Fast Track 2.4

From BR Wiki
Revision as of 21:22, 5 August 2014 by Laura (talk | contribs) (Created page with "====Functions==== User defined functions can do anything you want them to do. They must start with the letters FN but contain custom code. Variables can be passed in and out o...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Functions

User defined functions can do anything you want them to do. They must start with the letters FN but contain custom code. Variables can be passed in and out of functions. If something calls a function that starts with FN, then you can find the definition of that function by listing for it.

LIBRARIES

To remove some of the repetitiveness of coding. BR allows you to place code in functions in certain programs, which become libraries, to be used from other programs. Fileio is an example of this. It provides functions for opening, reading, writing and rewriting data by calling library functions and passing variables through them. Complete documentation is available on the wiki and from Sageax. Or you can create your own.

ScreenIO is another library that allows you to create programs much faster and more efficiently. It is so sophisticated that it can be considered an expression engine, similar to VB.NET.

Helpful tutorials for both FileIO and ScreenIO are available at [www.sageax.com SageAX's] website.