aboutsummaryrefslogtreecommitdiff
path: root/core/math.nom
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2018-11-17 14:38:05 -0800
committerBruce Hill <bruce@bruce-hill.com>2018-11-17 14:39:08 -0800
commit7f47d4204039258cec78c767f489b7809b4257ff (patch)
treec8533068b75ab453accfe1f688705e9e94c9e279 /core/math.nom
parent34a3dd22a4e132bd4e0fe3ce89831c3fe761d3d9 (diff)
In-progress (but working) overhaul of some elements including: function
calls, lib/thing.nom API, multi-assignments, varargs, etc.
Diffstat (limited to 'core/math.nom')
-rw-r--r--core/math.nom8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/math.nom b/core/math.nom
index aa1d200..38fb984 100644
--- a/core/math.nom
+++ b/core/math.nom
@@ -70,7 +70,7 @@ externally [all of %items, all %items] all mean:
return (no)
return (yes)
-[all of %items, all %items] all compile to:
+#[all of %items, all %items] all compile to:
unless (%items.type is "List"):
return \(all of %items)
@@ -89,7 +89,7 @@ externally [any of %items, any %items] all mean:
return (yes)
return (no)
-[any of %items, any %items] all compile to:
+#[any of %items, any %items] all compile to:
unless (%items.type is "List"):
return \(any of %items)
@@ -110,7 +110,7 @@ externally [sum of %items, sum %items] all mean:
%total += %
return %total
-[sum of %items, sum %items] all compile to:
+#[sum of %items, sum %items] all compile to:
unless (%items.type is "List"):
return \(sum of %items)
@@ -128,7 +128,7 @@ externally [product of %items, product %items] all mean:
%prod *= %
return %prod
-[product of %items, product %items] all compile to:
+#[product of %items, product %items] all compile to:
unless (%items.type is "List"):
return \(product of %items)