diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 17:03:20 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 17:03:20 -0700 |
commit | f404d991aa53ed81855e51b597bfe1d5c2288b42 (patch) | |
tree | d2ce081cc722eccc089591c63ea0a345b4b4701c /src/variable.h | |
parent | 1bd7f709f5217b248fcb3a4c7be2eeca84fec795 (diff) | |
download | stage-f404d991aa53ed81855e51b597bfe1d5c2288b42.tar.gz stage-f404d991aa53ed81855e51b597bfe1d5c2288b42.tar.bz2 stage-f404d991aa53ed81855e51b597bfe1d5c2288b42.tar.xz stage-f404d991aa53ed81855e51b597bfe1d5c2288b42.zip |
Most operators work, as well as if/then/else.
Loops should be very easy, but we don't have lists working yet, next is
scope selection.
Diffstat (limited to 'src/variable.h')
-rw-r--r-- | src/variable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/variable.h b/src/variable.h index e1bc30c..42dd865 100644 --- a/src/variable.h +++ b/src/variable.h | |||
@@ -55,6 +55,7 @@ public: | |||
55 | Variable operator-( const Variable &rhs ) const; | 55 | Variable operator-( const Variable &rhs ) const; |
56 | Variable operator*( const Variable &rhs ) const; | 56 | Variable operator*( const Variable &rhs ) const; |
57 | Variable operator/( const Variable &rhs ) const; | 57 | Variable operator/( const Variable &rhs ) const; |
58 | Variable operator-() const; | ||
58 | bool operator==( const Variable &rhs ) const; | 59 | bool operator==( const Variable &rhs ) const; |
59 | bool operator!=( const Variable &rhs ) const; | 60 | bool operator!=( const Variable &rhs ) const; |
60 | bool operator>( const Variable &rhs ) const; | 61 | bool operator>( const Variable &rhs ) const; |