Fixed some bugs
This commit is contained in:
+4
-1
@@ -73,9 +73,12 @@ def concept one hundred as 100
|
||||
one hundred isa number
|
||||
def concept hundreds from bnf number=n1 'hundred' 'and' number=n2 where n1 < 10 and n2 < 100 as n1 * 100 + n2
|
||||
hundreds isa number
|
||||
#def concept hundreds from bnf number 'hundred' where number < 10 as number * 100
|
||||
def concept hundreds from bnf number 'hundred' where number < 10 as number * 100
|
||||
last_created_concept() is number
|
||||
def concept thousands from bnf number 'thousand' where number < 1000 as number * 1000
|
||||
thousands isa number
|
||||
def concept thousands from bnf number=n1 'thousand' 'and' number=n2 as n1 * 1000 + n2 where n1 < 1000 and n2 < 1000
|
||||
last_created_concept() is number
|
||||
def concept history as history()
|
||||
def concept plus from a plus b as a + b
|
||||
def concept mult from a mult b as a * b
|
||||
|
||||
Reference in New Issue
Block a user