From 7f47d4204039258cec78c767f489b7809b4257ff Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 17 Nov 2018 14:38:05 -0800 Subject: In-progress (but working) overhaul of some elements including: function calls, lib/thing.nom API, multi-assignments, varargs, etc. --- core/math.nom | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'core/math.nom') 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) -- cgit v1.2.3