Option (disambiguation): Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
There are two methods of implementing '''Options''' in BR!. [[Option (Config)]] is used primarily at [[startup]] (see [[br32.exe]]) and has more options while [[Option ( | There are two methods of implementing '''Options''' in BR!. [[Option (Config)]] is used primarily at [[startup]] (see [[br32.exe]]) and has more options while [[Option (statement)]] occurs in running BR programs and are found on program lines. However an [[Execute]] [[Config]] [[statement]] enables all Option (Config) options to be used as statements. Do note that there is a difference in syntax. In the following code snippet line 10 utilizes an Option (statement) whilst 20 uses Option (Config). | ||
00010 Option Base 1 | 00010 Option Base 1 |
Latest revision as of 21:12, 18 July 2013
There are two methods of implementing Options in BR!. Option (Config) is used primarily at startup (see br32.exe) and has more options while Option (statement) occurs in running BR programs and are found on program lines. However an Execute Config statement enables all Option (Config) options to be used as statements. Do note that there is a difference in syntax. In the following code snippet line 10 utilizes an Option (statement) whilst 20 uses Option (Config).
00010 Option Base 1 00020 Execute "Config Option 1 Off"
In the above code snippet, line 10 utilizes the Option Statement and line 20 utilizes Option Config.