From b7ac3c1133b4df7b3ebbd5ea1f2bdcd349531785 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Sun, 25 Feb 1996 21:41:38 +0100
Subject: [PATCH] operator function documents added

Rev: doc/operators/addition:1.3(DEAD)
---
 doc/operators/addition | 24 ------------------------
 1 file changed, 24 deletions(-)
 delete mode 100644 doc/operators/addition

diff --git a/doc/operators/addition b/doc/operators/addition
deleted file mode 100644
index f7ab8da026..0000000000
--- a/doc/operators/addition
+++ /dev/null
@@ -1,24 +0,0 @@
-NAME
-	addition - add things together
-
-SYNTAX
-	a + b
-	or
-	mixed sum(mixed ...)
-
-DESCRIPTION
-	For ints and floats this operator simply adds the two operators
-	together. For strings and arrays, concatenation is done. For lists
-	and mapping this creates a new list with all indices and data as
-	in a and b. Note that this can cause a list or mapping to contain
-	several equal indices. Also, when adding a string to an int or float
-	the number is converted to a printable string first.
-
-EXAMPLES
-	"a"+10  	returns "a10"
-	10+20   	returns 30
-	({1})+({2})	returns ({1,2})
-	(<1>)+(<1>)	returns (<1,1>)
-
-SEE ALSO
-	subtraction, efun/sum, multiplication
-- 
GitLab