summaryrefslogtreecommitdiff
path: root/BUGS
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-01-24 12:00:22 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:43 +1000
commit2ae1c01c1b0b7d24fa2eeff3545b375d25c18c66 (patch)
treed37b63d50fea502fe61b98943ca380a4aa4d053d /BUGS
parent17b0f14f5e17efb7e70e47e711c6339e524875f8 (diff)
Simplify expr evaluation
Diffstat (limited to 'BUGS')
-rw-r--r--BUGS12
1 files changed, 10 insertions, 2 deletions
diff --git a/BUGS b/BUGS
index 03cc8d2..927770d 100644
--- a/BUGS
+++ b/BUGS
@@ -1,3 +1,11 @@
-Known bugs:
+Known bugs
+==========
-EXPR: ?: is not lazy. Functions like sin(), cos(), not implemented.
+expr
+----
+
+right-to-left associativity of ?: is not 100% correct.
+1?2:0?3:4 should be 2, not 3.
+
+Math functions like sin(), cos(), are not implemented
+to avoid requiring libm. Could be a configuration option.