Unorganised notes about programming in Exodus

From NEOSYS Dev Wiki
Revision as of 23:37, 13 May 2009 by Steve (talk | contribs) (New page: === c++ exodus === if you are only familiar with c then c++ has some improvements for examples like you can declare your variables at the point they are used (and not at the top of the ro...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

c++ exodus

if you are only familiar with c then c++ has some improvements for examples like you can declare your variables at the point they are used (and not at the top of the routine like c)

unlike many modern languages c++ retains the infamous goto statement making porting from pick basic much easier. you have to avoid declaring new variables (var xyz) within the scope of the jump but this is easily accomplished by moving the declaration just above the jump zone.

better to put print(a," ",b) than print(a^" ""b) because faster to do three outputs instead of two concatenations and one output

The following will compile but give throw "unassigned variable" on execution.

var foo=foo.sum();

strings must all be wrapped in " double quotes and single quoted strings are not allowed - except for single character strings. To puta double quote character within a string you must prefix them with \ to be like \".

note the double backslashes in regular expression strings (until we get the R string prefix for "raw strings"

word.match_regex("\\d+")

there are a series of compromises in exodus design which are forced by the limitations of c++ syntax. with time you get used to these.

better than pick basic:

the AND and OR operators "short circuit" ie do not evaluate the right hand side if the evaluation of the left hand side predetermines the final result. For example, in the evaluation of "aa() and bb()", if aa() returns false then bb() will never be evaluated.

gosub/return style local subroutines can have parameters and their variables are private by nature. this allows monolithic programming with many subroutines in one file/compilation unit without all variables being global.

multiple programming paradigms:

object orientated programming - if you want. functional programming - if you want. procedural programming - if you want.

for application level programming you can follow a standard of only including the exodus header file and not including any of the traditional c++ headers like <iostream>, <string>, <vector> etc. This way you limit the complexity of what the application programmers can do.

If you want to merge pick with traditional c++ programming you are free to include and header files you like. Just make sure to include the exodus.h AFTER all the other headers.

many operating system utilities can be programmed directly in c++ allowing you to do system programming in pick basic syntax

the bash command line shell treats various characters specially including " ' ( ) < > $ ! and others. You must escape/prefix them by \ to stop bash from messing with them.

so

list file with field = "xxx" (S)

becomes

list file with field = \"xxx\" \(S\)

or you can quote everything after the first word of the command. Single quotes allows all special characters to be used. Double quotes allows bash to continue to mess around with special cdoing macro expansion etc.

list 'file with field = "xxx" (S)'

list "file with field = 'xxx' (S)"

exodus allows the use {} can be used for () brackets

swap, match and index have an additional argument that can contain r for regular expression and ri for case insensitive regular expression

using comparison (boolean) as 1 or 0 is not supported so "xxx+(a==b)" isnt allowed