diff options
Diffstat (limited to 'code/basic.felan')
-rw-r--r-- | code/basic.felan | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/code/basic.felan b/code/basic.felan index b248493..cac8d85 100644 --- a/code/basic.felan +++ b/code/basic.felan @@ -514,6 +514,10 @@ __equal__ :: (left:bool,right:bool) -> bool { return @equal(left,right); }; +__equal__ :: (left:type,right:type) -> bool { + return @equal(left,right); +}; + __not_equal__ :: (left:u8,right:u8) -> bool { return @notEqual(left,right); }; @@ -566,6 +570,10 @@ __not_equal__ :: (left:bool,right:bool) -> bool { return @notEqual(left,right); }; +__not_equal__ :: (left:type,right:type) -> bool { + return @notEqual(left,right); +}; + __logical_not__ :: (value:bool) -> bool { return value == false; }; |